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