切换为 Vue SPA 首页,删除旧版静态页面

- server.py: 支持 Vue SPA fallback,根路径优先 VUE_DIST
- router: createWebHistory('/psy/')
- 删除旧版 pages/css/js 目录和根目录 HTML 文件
This commit is contained in:
jackyu66git
2026-08-05 15:05:19 +08:00
parent e589af9bc0
commit b46d651892
35 changed files with 41 additions and 5357 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import { createRouter, createWebHistory } from 'vue-router'
const router = createRouter({
history: createWebHistory(),
history: createWebHistory('/psy/'),
routes: [
{ path: '/', name: 'home', component: () => import('../pages/HomePage.vue') },
{ path: '/explore', name: 'explore', component: () => import('../pages/ExplorePage.vue') },