add example solidstart+vite

This commit is contained in:
EmoPorEmilio
2024-07-11 20:32:27 -03:00
parent ae1cdac7db
commit eeaf768581
18 changed files with 8542 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { defineConfig } from "@solidjs/start/config";
export default defineConfig({
ssr: false,
server: {
static: true,
},
vite: {
optimizeDeps: {
exclude: ['@ffmpeg/ffmpeg', '@ffmpeg/util']
},
}
});