Browse Source

更换为hash模式

citygis-lhh 3 months ago
parent
commit
675980dcb7
2 changed files with 2 additions and 1 deletions
  1. 1 1
      src/router/index.js
  2. 1 0
      vite.config.js

+ 1 - 1
src/router/index.js

@@ -1,7 +1,7 @@
 import { createRouter, createWebHistory, createWebHashHistory } from 'vue-router';
 
 const router = createRouter({
-  history: createWebHashHistory(import.meta.env.BASE_URL),
+  history: createWebHashHistory('./'),
   routes: [
     {
       path: '',

+ 1 - 0
vite.config.js

@@ -5,6 +5,7 @@ import postcssPxToViewport from 'postcss-px-to-viewport';
 export default defineConfig({
   plugins: [vue()],
   server: {
+    base: './',
     port: '8098',
     host: '0.0.0.0',
     proxy: {