1
0

Initial commit

This commit is contained in:
Ahmed Al-Taiar
2023-10-24 11:13:16 -04:00
commit 703c73e058
52 changed files with 22916 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'
// See: https://vitejs.dev/config/server-options.html#server-host
// So that Vite will load on local instead of 127.0.0.1
dns.setDefaultResultOrder('verbatim')
import redwood from '@redwoodjs/vite'
const viteConfig: UserConfig = {
plugins: [redwood()],
}
export default defineConfig(viteConfig)