Adding minimal & tailwind template

This commit is contained in:
Alexandre
2020-08-13 22:18:05 +02:00
parent 0181578698
commit 8967356fc1
29 changed files with 5574 additions and 293 deletions
+10
View File
@@ -0,0 +1,10 @@
import { UserConfig } from "vite";
import { solidPlugin } from "@amoutonbrady/vite-plugin-solid";
const config: UserConfig = {
outDir: "dist",
plugins: [solidPlugin()],
enableEsbuild: false,
};
export default config;