加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.js 2.20 KB
一键复制 编辑 原始数据 按行查看 历史
张松涛 提交于 2023-03-17 17:10 . 低代码的简单实现
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/, ''),
// },
// },
// },
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化