1 Star 0 Fork 0

凌空暗羽/easyClothing-plus-front

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.js 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
凌空暗羽 提交于 2023-05-13 12:14 . '解决项目部署问题'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import Components from 'unplugin-vue-components/vite';
import { VantResolver } from 'unplugin-vue-components/resolvers';
const path = require('path')
export default defineConfig({
// 起个别名,在引用资源时,可以用‘@/资源路径’直接访问
resolve: {
alias: {
"@": path.resolve(__dirname, "src"),
},
},
plugins: [
vue(),
Components({
resolvers: [VantResolver()],
}),],
// 配置前端服务地址和端口
server: {
host: '0.0.0.0',
port: 8080,
// 是否开启 https
https: false,
// 设置反向代理,跨域
proxy: {
'/api': {
// 后台地址
target: 'http://127.0.0.1:3000',//https://admin.cloth.nightowl.top
changeOrigin: true,
rewrite: path => path.replace(/^\/api/, '')
},
'/image': {
// 图片资源管理
target: 'http://127.0.0.1:3000',
changeOrigin: true,
//rewrite: path => path.replace(/^\/api/, '')
},
},
},
// publicDir: "public/"
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/flying_dark_feather/easyClothing-plus-front.git
git@gitee.com:flying_dark_feather/easyClothing-plus-front.git
flying_dark_feather
easyClothing-plus-front
easyClothing-plus-front
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385