Clean unused post-css
This commit is contained in:
parent
a73165470e
commit
a7c2dd8171
|
@ -17,9 +17,7 @@
|
||||||
"build": "vite build"
|
"build": "vite build"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@sveltejs/vite-plugin-svelte": "1.4.0",
|
"@sveltejs/vite-plugin-svelte": "1.4.0"
|
||||||
"postcss": "^8.2.9",
|
|
||||||
"vite-plugin-commonjs": "^0.10.4"
|
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"svelte"
|
"svelte"
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
import { defineConfig } from "vite"
|
import { defineConfig } from "vite"
|
||||||
import { svelte } from "@sveltejs/vite-plugin-svelte"
|
import { svelte } from "@sveltejs/vite-plugin-svelte"
|
||||||
import postcss from "postcss"
|
|
||||||
import path from "path"
|
import path from "path"
|
||||||
|
|
||||||
export default defineConfig(({ mode }) => {
|
export default defineConfig(({ mode }) => {
|
||||||
|
@ -19,9 +18,6 @@ export default defineConfig(({ mode }) => {
|
||||||
emitCss: true,
|
emitCss: true,
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
css: {
|
|
||||||
postcss,
|
|
||||||
},
|
|
||||||
resolve: {
|
resolve: {
|
||||||
alias: {
|
alias: {
|
||||||
"@budibase/shared-core": path.resolve(__dirname, "../shared-core/src"),
|
"@budibase/shared-core": path.resolve(__dirname, "../shared-core/src"),
|
||||||
|
|
Loading…
Reference in New Issue