From d48e81598662ff1ea05620cb5d46d95b86fe0c51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=B9=E7=94=B2=E4=BA=91?= Date: Tue, 5 Nov 2024 18:15:56 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E8=AE=BE=E7=BD=AEvite?= =?UTF-8?q?.config.js=20base=E9=80=89=E9=A1=B9=E6=9E=84=E5=BB=BA=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E8=B7=AF=E5=BE=84=E4=B8=8D=E6=AD=A3=E7=A1=AE=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/settings.json | 6 +++--- src/router/index.ts | 2 +- vite.config.ts | 1 + 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 5c46832..5938032 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -84,12 +84,12 @@ "editor.defaultFormatter": "esbenp.prettier-vscode" }, "editor.codeActionsOnSave": { - "source.fixAll.eslint": true + "source.fixAll.eslint": "explicit" }, "[vue]": { "editor.codeActionsOnSave": { - "source.fixAll.eslint": true, - "source.fixAll.stylelint": true + "source.fixAll.eslint": "explicit", + "source.fixAll.stylelint": "explicit" }, "editor.defaultFormatter": "esbenp.prettier-vscode" }, diff --git a/src/router/index.ts b/src/router/index.ts index fe02090..31814a9 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -2,7 +2,7 @@ import { createRouter, createWebHistory, Router } from 'vue-router'; import routes from './routes'; const router: Router = createRouter({ - history: createWebHistory('/'), + history: createWebHistory(import.meta.env.BASE_URL), routes: routes, }); diff --git a/vite.config.ts b/vite.config.ts index e059396..8e1e979 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -15,6 +15,7 @@ export default function ({ command, mode }: ConfigEnv): UserConfig { const viteEnv = wrapperEnv(env); return { + base: '/', root, resolve: { alias: [