You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
372 B
TypeScript

import dns from 'dns'
import { defineConfig, UserConfig } 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)