build: inline postcss config into vite config
This commit is contained in:
parent
44d974a870
commit
bb724f581b
2 changed files with 3 additions and 5 deletions
|
@ -1,5 +0,0 @@
|
||||||
module.exports = {
|
|
||||||
plugins: {
|
|
||||||
autoprefixer: {}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -15,5 +15,8 @@ export default defineConfig({
|
||||||
},
|
},
|
||||||
css: {
|
css: {
|
||||||
devSourcemap: true,
|
devSourcemap: true,
|
||||||
|
postcss: {
|
||||||
|
plugins: [require('autoprefixer')]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue