Files
trainhour/vite.config.ts
Loic Coenen 3f74f4092d
Some checks failed
Playwright Tests / test (push) Has been cancelled
chore: fix vite
2025-10-31 15:20:59 +01:00

11 lines
209 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
allowedHosts: ['liveboard.xyz']
}
})