1 Star 0 Fork 0

boxt/lpgpt

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.js 1.56 KB
一键复制 编辑 原始数据 按行查看 历史
老地方 提交于 2023-07-03 16:52 . fix:
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
import unpluginAutoImport from 'unplugin-auto-import/vite'
// https://vitejs.dev/config/
export default defineConfig(({ command, mode }) => {
return {
base: './',
resolve: {
alias: [{
find: '@',
replacement: resolve(__dirname, 'src')
}]
},
server: {
port: 3008,
host: true,
open: true,
proxy: {
'/testai': {
target: 'https://www.icu007.top/testai',
changeOrigin: true,
rewrite: path => {
return path.replace(/^\/testai/, '')
}
}
}
},
esbuild: {
drop: command === 'build' ? ['console', 'debugger'] : [],
},
build: {
target: 'es2015',
cssTarget: ['chrome52'],
cssCodeSplit: true,
emptyOutDir: true,
// 启用/禁用 压缩大小报告。压缩大型输出文件可能会很慢,因此禁用该功能可能会提高大型项目的构建性能。
reportCompressedSize: false,
// chunk 大小警告的限制(以 kbs 为单位)默认: 500
chunkSizeWarningLimit: 800,
rollupOptions: {
output: {
manualChunks: {
vue: ['vue'],
}
}
}
},
plugins: [
vue({
// 响应性语法糖目前默认是关闭状态,需要你显式选择启用
reactivityTransform: true
}),
unpluginAutoImport({
imports: ['vue', 'vue-router', 'pinia'],
dts: false
})
],
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/boxt/lpgpt.git
git@gitee.com:boxt/lpgpt.git
boxt
lpgpt
lpgpt
master

搜索帮助