13 lines
269 B
TypeScript
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: '/'
|
|
})
|