auto-sync: 2026-05-17 06:14:22

This commit is contained in:
cfdaily
2026-05-17 06:14:22 +08:00
parent 7a669de900
commit 841402005c
2 changed files with 27 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>墨子+ v2.0 Dashboard</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
+15
View File
@@ -0,0 +1,15 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
port: 8083,
proxy: {
'/api': 'http://localhost:8080',
},
},
build: {
outDir: 'dist',
},
});