代码拉取完成,页面将自动刷新
同步操作将从 张松涛/lowcode 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import { fileURLToPath, URL } from "node:url";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import * as path from "path";
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
// css: {
// preprocessorOptions: {
// scss: {
// additionalData: `@use "@/styles/index.scss" as *;`,
// },
// },
// },
plugins: [vue()],
build: {
cssCodeSplit: true, // 如果设置为false,整个项目中的所有 CSS 将被提取到一个 CSS 文件中
sourcemap: false, // 构建后是否生成 source map 文件。如果为 true,将会创建一个独立的 source map 文件
target: "modules", // 设置最终构建的浏览器兼容目标。默认值是一个 Vite 特有的值——'modules' 还可设置为 'es2015' 'es2016'等
chunkSizeWarningLimit: 550, // 单位kb 打包后文件大小警告的限制 (文件大于此此值会出现警告)
assetsInlineLimit: 4096, // 单位字节(1024等于1kb) 小于此阈值的导入或引用资源将内联为 base64 编码,以避免额外的 http 请求。设置为 0 可以完全禁用此项。
minify: "terser", // 'terser' 相对较慢,但大多数情况下构建后的文件体积更小。'esbuild' 最小化混淆更快但构建后的文件相对更大。
terserOptions: {
compress: {
drop_console: true, // 生产环境去除console
drop_debugger: true, // 生产环境去除debugger
},
},
rollupOptions: {
input: {
main: path.resolve(__dirname, "index.html"),
preview: path.resolve(__dirname, "preview/index.html"),
},
},
},
optimizeDeps: {
include: [
"@vueuse/core",
"element-plus",
"vant",
"lodash-es",
"vuedraggable",
],
},
// server: {
// port: 8080, //启动端口
// hmr: {
// host: "127.0.0.1",
// port: 8080,
// },
// 设置 https 代理
// proxy: {
// '/api': {
// target: 'https://oss-arena.5eplay.com/',
// changeOrigin: true,
// rewrite: (path: string) => path.replace(/^\/api/, ''),
// },
// },
// },
});
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。