⬆️ Update to latest dependencies

This commit is contained in:
Alexandre
2021-06-27 20:47:53 +02:00
parent 4bd1ae3ac2
commit 326f415c1e
20 changed files with 351 additions and 341 deletions
+18
View File
@@ -0,0 +1,18 @@
import { defineConfig } from "vite";
import solidPlugin from "vite-plugin-solid";
import WindiCSS from "vite-plugin-windicss";
export default defineConfig({
plugins: [
solidPlugin(),
WindiCSS({
scan: {
fileExtensions: ["html", "js", "ts", "jsx", "tsx"],
},
}),
],
build: {
target: "esnext",
polyfillDynamicImport: false,
},
});