Initial commit

This commit is contained in:
2024-10-03 17:14:32 +02:00
commit e6ec877864
50 changed files with 18515 additions and 0 deletions

16
web/vite.config.ts Normal file
View File

@ -0,0 +1,16 @@
import dns from 'dns'
import type { UserConfig } from 'vite'
import { defineConfig } from 'vite'
import redwood from '@redwoodjs/vite'
// So that Vite will load on localhost instead of `127.0.0.1`.
// See: https://vitejs.dev/config/server-options.html#server-host.
dns.setDefaultResultOrder('verbatim')
const viteConfig: UserConfig = {
plugins: [redwood()],
}
export default defineConfig(viteConfig)