Initial commit

This commit is contained in:
Ahmed Al-Taiar
2024-08-07 22:31:59 -04:00
commit 746a443ccd
50 changed files with 22362 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)