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