1 Star 0 Fork 0

王丽/vite_vue3_ts

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.ts 1019 Bytes
一键复制 编辑 原始数据 按行查看 历史
王丽 提交于 2022-01-26 19:03 . 项目初始化
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import path from 'path'
//@ts-ignore
import viteCompression from 'vite-plugin-compression'
// https://vitejs.dev/config/
export default defineConfig({
base: './', //打包路径
plugins: [
vue(),
// gzip压缩 生产环境生成 .gz 文件
viteCompression({
verbose: true,
disable: false,
threshold: 10240,
algorithm: 'gzip',
ext: '.gz',
}),
],
// 配置别名
resolve: {
alias: {
'@': path.resolve(__dirname, 'src'),
},
},
css: {
preprocessorOptions: {
scss: {
additionalData: '@import "@/assets/style/mian.scss";',
},
},
},
//启动服务配置
server: {
host: '0.0.0.0',
port: 5000,
open: true,
https: false,
proxy: {},
},
// 生产环境打包配置
//去除 console debugger
build: {
terserOptions: {
compress: {
drop_console: true,
drop_debugger: true,
},
},
},
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangli971112/vite_vue3_ts.git
git@gitee.com:wangli971112/vite_vue3_ts.git
wangli971112
vite_vue3_ts
vite_vue3_ts
main

搜索帮助