Initialize web-test frontend

This commit is contained in:
moriy
2026-04-28 17:24:58 +08:00
commit 6074a5739d
15 changed files with 3037 additions and 0 deletions

15
web-test/vite.config.js Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from "vite";
export default defineConfig({
optimizeDeps: {
include: ["cesium"],
},
server: {
host: "127.0.0.1",
port: 5173,
},
preview: {
host: "127.0.0.1",
port: 4173,
},
});