| 1234567891011121314151617181920 |
- import { defineConfig } from 'vite'
- import vue from '@vitejs/plugin-vue'
- export default defineConfig({
- plugins: [vue()],
- assetsInclude: ['**/*.glb', '**/*.fbx', '**/*.FBX'],
- server: {
- host: '0.0.0.0',
- port: 5173,
- proxy: {
- '/terrain': {
- target: 'http://localhost:9003',
- changeOrigin: true,
- },
- },
- },
- build: {
- chunkSizeWarningLimit: 500,
- },
- })
|