代码拉取完成,页面将自动刷新
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
})
],
}
})
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。