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