16 lines
357 B
TypeScript
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',
|
|
}
|
|
}
|
|
})
|