setup solidjs

This commit is contained in:
2022-08-12 19:35:39 -06:00
parent 4a7bfc8205
commit 62a0a3e437
13 changed files with 1154 additions and 2 deletions

12
vite.config.ts Normal file
View File

@ -0,0 +1,12 @@
import { defineConfig } from 'vite';
import solidPlugin from 'vite-plugin-solid';
export default defineConfig({
plugins: [solidPlugin()],
server: {
port: 3000,
},
build: {
target: 'esnext',
},
});