build: inline postcss config into vite config

This commit is contained in:
Sebin Nyshkim 2023-04-03 00:29:07 +02:00
parent 44d974a870
commit bb724f581b
2 changed files with 3 additions and 5 deletions

View file

@ -1,5 +0,0 @@
module.exports = {
plugins: {
autoprefixer: {}
}
}

View file

@ -15,5 +15,8 @@ export default defineConfig({
},
css: {
devSourcemap: true,
postcss: {
plugins: [require('autoprefixer')]
}
},
});