mirror of
https://github.com/opsre/LiteOps.git
synced 2026-02-06 15:11:10 +08:00
16 lines
283 B
JavaScript
16 lines
283 B
JavaScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
server: {
|
|
port: 8000,
|
|
host: true,
|
|
strictPort: true,
|
|
cors: true,
|
|
allowedHosts: [
|
|
'0.0.0.0',
|
|
]
|
|
}
|
|
}) |