diff --git a/README.md b/README.md index 7ed96b85..8224b494 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ ## 预览地址 -- [点击预览](https://xiaodaigua-ray.github.io/#/) +- [点击预览](https://xiaodaigua-ray.github.io/ray-template/#/) - [点击预览(加速地址)](https://ray-template.yunkuangao.com/#/) ## 文档地址 diff --git a/cfg.ts b/cfg.ts index 5760ed75..ca29a80b 100644 --- a/cfg.ts +++ b/cfg.ts @@ -47,6 +47,7 @@ import { import type { AppConfigExport } from './src/types/cfg' const config: AppConfigExport = { + base: '/ray-template/', /** 配置首屏加载信息 */ preloadingConfig: { title: 'Ray Template', diff --git a/src/types/cfg.ts b/src/types/cfg.ts index 8fd7cb8b..0e4194b6 100644 --- a/src/types/cfg.ts +++ b/src/types/cfg.ts @@ -42,6 +42,7 @@ export interface Config { rootRoute?: RootRoute primaryColor?: string preloadingConfig?: PreloadingConfig + base?: string } export type Recordable = Record @@ -66,6 +67,7 @@ export interface AppConfig { } rootRoute: RootRoute primaryColor: string + base?: string } export type AppConfigExport = Config & UserConfigExport diff --git a/vite.config.ts b/vite.config.ts index be676dd1..4fd14904 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -35,6 +35,7 @@ const { rootRoute, primaryColor, preloadingConfig, + base, } = config /** @@ -60,6 +61,7 @@ const __APP_CFG__ = { // https://vitejs.dev/config/ export default defineConfig(async ({ mode }) => { return { + base, define: { __APP_CFG__: JSON.stringify(__APP_CFG__), },