加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.js 927 Bytes
一键复制 编辑 原始数据 按行查看 历史
moonby 提交于 2024-07-19 11:50 . 240719
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// 导入path模块
import path from 'path'
//import requireTransform from 'vite-plugin-require-transform'
// import { WebControl } from 'web-control';
// import {WebControl} from '@/assets/script/video/web-control.esm.min.js'
// Components({resolves:[WebControl()]})
export default defineConfig({
// 设置文件路径别名
resolve:{
alias:{
"@": path.resolve(__dirname, "src")
}
},
plugins: [
[vue()],
// requireTransform({
// fileRegex: /.js$|.vue$/,
// })
],
server: {
host: '0.0.0.0',
port: 5173,
open: true,
proxy: {
'/api': {
target: 'http://192.168.1.252:8001/',
//target: 'http://218.69.97.198:8001/', // 目标服务器地址
//target: 'http://localhost:5013/', // 目标服务器地址
changeOrigin: true, // 允许跨域
}
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化