1 Star 1 Fork 1

ASun/vue-vite-earth

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.js 817 Bytes
一键复制 编辑 原始数据 按行查看 历史
ASun 提交于 2024-07-05 10:49 . init.
import path from 'path'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import cesium from 'vite-plugin-cesium'; // 引入插件
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue(), cesium()],
resolve: {
alias: {
"@": path.resolve("src"),
"comps": path.resolve("src/components"),
"apis": path.resolve("src/apis"),
"views": path.resolve("src/views"),
"utils": path.resolve("src/utils"),
"routes": path.resolve("src/routes"),
"styles": path.resolve("src/styles"),
}
},
server: {
host: '0.0.0.0',
port: 8000,
},
build: {
outDir: 'dist', //指定输出路径(相对于 项目根目录). 建议使用系统默认
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/ASun001/vue-vite-earth.git
git@gitee.com:ASun001/vue-vite-earth.git
ASun001
vue-vite-earth
vue-vite-earth
main

搜索帮助