add solid example

This commit is contained in:
Rene Haas
2022-11-11 18:18:03 +01:00
parent 40f6bfae80
commit a8e2bca86d
16 changed files with 3571 additions and 3 deletions
+12
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',
},
});