6 Star 36 Fork 6

咦乌喻/vue3+element-plus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 791 Bytes
一键复制 编辑 原始数据 按行查看 历史
devin 提交于 2022-05-06 17:42 . 添加图标按钮
/*
* @Description:
* @Date: 2021-10-22 09:39:41
* @LastEditTime: 2022-05-06 17:17:22
* @FilePath: /vue3-element-plus/vite.config.ts
* @Author: Devin
*/
import { defineConfig, searchForWorkspaceRoot } from 'vite';
import vue from '@vitejs/plugin-vue';
import { resolve } from 'path';
export default defineConfig({
plugins: [
vue(),
],
server: {
port: 8080,
open: false,
host: '0.0.0.0',
fs: {
allow: [
// search up for workspace root
searchForWorkspaceRoot(process.cwd()),
// your custom rules
'/input/list',
'/select/list'
]
}
},
build: {
outDir: 'dist'
},
base: '',
resolve: {
alias: [
{
find: '@',
replacement: resolve('src')
}
]
}
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/DevinCP/vue3-element-plus.git
git@gitee.com:DevinCP/vue3-element-plus.git
DevinCP
vue3-element-plus
vue3+element-plus
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385