Files
music-jeopardy/vite.config.ts
Johnny322 a8ac741c36
Some checks failed
On Push Deploy / deploy (push) Has been cancelled
https
2026-02-08 13:03:47 +01:00

16 lines
357 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,
hmr: {
host: 'jeopardy.toppit.net', // your public hostname
protocol: 'https',
}
}
})