Files
music-jeopardy/vite.config.ts
Johnny322 abc31f4313
Some checks failed
On Push Deploy / deploy (push) Has been cancelled
Add base and remove hmr
2026-02-08 15:04:42 +01:00

13 lines
269 B
TypeScript

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
assetsInclude: ['**/*.mp3'],
server: {
host: '0.0.0.0', // crucial! allows container/network access
port: 5173,
},
base: '/'
})