base url 更改

This commit is contained in:
ray_wuhao 2023-04-06 15:19:22 +08:00
parent a236fef068
commit 47fe7853c5
4 changed files with 6 additions and 1 deletions

View File

@ -12,7 +12,7 @@
## 预览地址
- [点击预览](https://xiaodaigua-ray.github.io/#/)
- [点击预览](https://xiaodaigua-ray.github.io/ray-template/#/)
- [点击预览(加速地址)](https://ray-template.yunkuangao.com/#/)
## 文档地址

1
cfg.ts
View File

@ -47,6 +47,7 @@ import {
import type { AppConfigExport } from './src/types/cfg'
const config: AppConfigExport = {
base: '/ray-template/',
/** 配置首屏加载信息 */
preloadingConfig: {
title: 'Ray Template',

View File

@ -42,6 +42,7 @@ export interface Config {
rootRoute?: RootRoute
primaryColor?: string
preloadingConfig?: PreloadingConfig
base?: string
}
export type Recordable<T = unknown> = Record<string, T>
@ -66,6 +67,7 @@ export interface AppConfig {
}
rootRoute: RootRoute
primaryColor: string
base?: string
}
export type AppConfigExport = Config & UserConfigExport

View File

@ -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__),
},