Some checks failed
Lint Code / Lint Code (push) Failing after 5m15s
- 新增飞书登录API接口定义及请求方法 - 添加飞书登录相关的类型声明 - 本地多语言文件增加飞书登录文案(中英文) - 登录页面新增飞书登录视图和样式,支持扫码或授权登录 - 添加飞书登录状态控制、回调处理逻辑,支持token和用户信息存储 - 路由白名单增加飞书登录回调路径,避免权限拦截 - 登录页新增切换账号密码登录和飞书登录的切换按钮 - Vite配置新增本地api代理规则,便于接口联调测试
73 lines
2.1 KiB
TypeScript
73 lines
2.1 KiB
TypeScript
import { getPluginsList } from "./build/plugins";
|
|
import { include, exclude } from "./build/optimize";
|
|
import { type UserConfigExport, type ConfigEnv, loadEnv } from "vite";
|
|
import {
|
|
root,
|
|
alias,
|
|
wrapperEnv,
|
|
pathResolve,
|
|
__APP_INFO__
|
|
} from "./build/utils";
|
|
|
|
export default async ({ mode }: ConfigEnv): Promise<UserConfigExport> => {
|
|
const { VITE_CDN, VITE_PORT, VITE_COMPRESSION, VITE_PUBLIC_PATH } =
|
|
wrapperEnv(loadEnv(mode, root));
|
|
return {
|
|
base: VITE_PUBLIC_PATH,
|
|
root,
|
|
resolve: {
|
|
alias
|
|
},
|
|
// 服务端渲染
|
|
server: {
|
|
// 端口号
|
|
port: VITE_PORT,
|
|
host: "0.0.0.0",
|
|
// 本地跨域代理 https://cn.vitejs.dev/config/server-options.html#server-proxy
|
|
proxy: {
|
|
"/api": {
|
|
target: "http://localhost:8080/api",
|
|
changeOrigin: true,
|
|
rewrite: path => path.replace(/^\/api/, "")
|
|
}
|
|
},
|
|
// 预热文件以提前转换和缓存结果,降低启动期间的初始页面加载时长并防止转换瀑布
|
|
warmup: {
|
|
clientFiles: ["./index.html", "./src/{views,components}/*"]
|
|
}
|
|
},
|
|
plugins: await getPluginsList(VITE_CDN, VITE_COMPRESSION),
|
|
// https://cn.vitejs.dev/config/dep-optimization-options.html#dep-optimization-options
|
|
optimizeDeps: {
|
|
include,
|
|
exclude
|
|
},
|
|
build: {
|
|
// https://cn.vitejs.dev/guide/build.html#browser-compatibility
|
|
target: "es2015",
|
|
sourcemap: false,
|
|
// 消除打包大小超过500kb警告
|
|
chunkSizeWarningLimit: 4000,
|
|
rolldownOptions: {
|
|
input: {
|
|
index: pathResolve("./index.html", import.meta.url)
|
|
},
|
|
// 静态资源分类打包
|
|
output: {
|
|
chunkFileNames: "static/js/[name]-[hash].js",
|
|
entryFileNames: "static/js/[name]-[hash].js",
|
|
assetFileNames: "static/[ext]/[name]-[hash].[ext]"
|
|
},
|
|
checks: {
|
|
pluginTimings: false,
|
|
toleratedTransform: false
|
|
}
|
|
}
|
|
},
|
|
define: {
|
|
__INTLIFY_PROD_DEVTOOLS__: false,
|
|
__APP_INFO__: JSON.stringify(__APP_INFO__)
|
|
}
|
|
};
|
|
};
|