8 Star 0 Fork 0

黄彬/logistics_admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.js 1.54 KB
一键复制 编辑 原始数据 按行查看 历史
黄彬 提交于 2023-12-04 12:25 . 基础搭建
import { defineConfig, loadEnv } from 'vite'
import vue from '@vitejs/plugin-vue'
import VueSetupExtend from 'vite-plugin-vue-setup-extend'
import { fileURLToPath, URL } from "node:url";
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
export default defineConfig(({ mode }) => {
const viteEnv = loadEnv(mode, './')
return {
base: viteEnv.VITE_BASE,
server: {
host: "localhost",
port: "3000",
https: false,
open: true,
hmr: true,
proxy: {
[viteEnv.VITE_BASE_URL]: {
target: viteEnv.VITE_BASE_SERVER_URL,
changeOrigin: true,
rewrite: (path) => path.replace(viteEnv.VITE_BASE_URL, "/"),
},
},
},
resolve: {
alias: [
{
find: "@",
replacement: fileURLToPath(new URL("./src", import.meta.url)),
},
{
find: "@img",
replacement: fileURLToPath(
new URL("./src/assets/images", import.meta.url)
),
},
{
find: "vue",
replacement: "vue/dist/vue.esm-bundler.js",
},
],
extensions: [".ts", ".js"],
},
plugins: [
vue({
refTransform: true, // 开启ref转换
}),
VueSetupExtend(),
AutoImport({
imports: ["vue", "pinia", "vue-router", "@vueuse/core"],
}),
Components({
dirs: ["src/components/", "src/view/"],
include: [/\.vue$/, /\.vue\?vue/, /\.md$/],
resolvers: [],
}),
],
};
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/357177179/logistics_admin.git
git@gitee.com:357177179/logistics_admin.git
357177179
logistics_admin
logistics_admin
master

搜索帮助