Adding new template with automatique routing

This commit is contained in:
Alexandre
2021-02-22 13:40:00 +01:00
parent 97a4535c81
commit 9648bb5230
14 changed files with 961 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { defineConfig } from "vite";
import solidPlugin from "vite-plugin-solid";
import WindiCSS from "vite-plugin-windicss";
export default defineConfig({
plugins: [solidPlugin(), WindiCSS()],
build: {
target: "esnext",
polyfillDynamicImport: false,
},
});