17 lines
346 B
JavaScript
17 lines
346 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
"postcss-import": {
|
|
// Resolve @/ alias to make imports work during build
|
|
resolve(id) {
|
|
return id.startsWith("@/")
|
|
? id.replace("@/", "./")
|
|
: id;
|
|
},
|
|
},
|
|
"tailwindcss/nesting": {},
|
|
tailwindcss: {},
|
|
autoprefixer: {},
|
|
'postcss-nesting': {}
|
|
},
|
|
};
|