feat: add solid app

This commit is contained in:
Mauricio Siu
2024-06-30 19:31:36 -06:00
parent ec00efe05c
commit 4c428adec3
13 changed files with 1558 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
import { defineConfig } from "vite";
import solidPlugin from "vite-plugin-solid";
// import devtools from 'solid-devtools/vite';
export default defineConfig({
plugins: [
/*
Uncomment the following line to enable solid-devtools.
For more info see https://github.com/thetarnav/solid-devtools/tree/main/packages/extension#readme
*/
// devtools(),
solidPlugin(),
],
server: {
port: 3000,
},
build: {
target: "esnext",
},
preview: {
port: 3000,
host: true,
},
});