feat: rename folders

This commit is contained in:
Mauricio Siu
2024-06-30 20:31:53 -06:00
parent e494f3a3aa
commit 90f5981b60
195 changed files with 20 additions and 18 deletions

24
solidjs/vite.config.ts Normal file
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,
},
});