1 Star 0 Fork 0

Kaya/light-minprogam

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
2521750059 提交于 2024-03-28 12:03 . feat: 初始化项目
import { resolve } from 'node:path';
import uni from '@dcloudio/vite-plugin-uni';
import AutoImportTypes from 'auto-import-types';
import PiniaAutoRefs from 'pinia-auto-refs';
import Unocss from 'unocss/vite';
import AutoImport from 'unplugin-auto-import/vite';
import Components from 'unplugin-vue-components/vite';
import { defineConfig } from 'vite';
import env from './src/config/env';
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: {
'@': resolve(__dirname, 'src')
}
},
plugins: [
AutoImportTypes(),
PiniaAutoRefs(),
AutoImport({
dts: 'src/auto-imports.d.ts',
imports: [
'vue',
'uni-app',
'pinia',
{
'@/helper/pinia-auto-refs': ['useStore']
}
],
exclude: ['createApp'],
eslintrc: {
enabled: true
}
}),
Components({
extensions: ['vue'],
dts: 'src/components.d.ts'
}),
uni(),
Unocss()
],
server: {
open: true, // 自动打开
base: './ ', // 生产环境路径
proxy: {
// 本地开发环境通过代理实现跨域,生产环境使用 nginx 转发
// 正则表达式写法
'^/api': {
target: env.apiBaseUrl, // 后端服务实际地址
changeOrigin: true, // 开启代理
rewrite: (path) => path.replace(/^\/api/, '')
}
}
}
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/yagaminaito_admin/light-minprogam.git
git@gitee.com:yagaminaito_admin/light-minprogam.git
yagaminaito_admin
light-minprogam
light-minprogam
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385