mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-09 20:12:26 +10:00
11 lines
222 B
JavaScript
11 lines
222 B
JavaScript
const { join } = require("path");
|
|
|
|
module.exports = {
|
|
plugins: {
|
|
"postcss-import": {},
|
|
"tailwindcss/nesting": {},
|
|
tailwindcss: { config: join(__dirname, "tailwind.config.js") },
|
|
autoprefixer: {},
|
|
},
|
|
};
|