1 Star 0 Fork 1

Kevinzouzou/ZhangApple-blog

forked from Vae+/ZhangApple-blog 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vite.config.ts 909 Bytes
一键复制 编辑 原始数据 按行查看 历史
Vae+ 提交于 2024-01-08 15:12 . 代码提交
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import { NaiveUiResolver } from 'unplugin-vue-components/resolvers'
// https://vitejs.dev/config/
export default defineConfig({
base:"./",
server:{
open: false,//启动项目自动弹出浏览器
port: 4002,//启动端口
proxy: {
'/api': {
target: 'http://localhost:8081/', //实际请求地址
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, '')
},
}
},
plugins: [vue(), AutoImport({
imports: [
'vue',
{
'naive-ui': [
'useDialog',
'NLayout',
'useMessage',
'useNotification',
'useLoadingBar'
]
}
]
}),
Components({
resolvers: [NaiveUiResolver()]
})],
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Kevinzou316/zhang-apple-blog.git
git@gitee.com:Kevinzou316/zhang-apple-blog.git
Kevinzou316
zhang-apple-blog
ZhangApple-blog
master

搜索帮助