perf(projects): 添加unocss配置,添加打包分析插件

This commit is contained in:
‘chen.home’ 2022-08-06 15:01:39 +08:00
parent 054b02bf9b
commit ada955fc7b
11 changed files with 34 additions and 9 deletions

View File

@ -1,5 +1,8 @@
# 是否开启压缩资源 # 是否开启压缩资源
VITE_COMPRESS_OPEN=N VITE_COMPRESS_OPEN=N
# gzip | brotliCompress | deflate | deflateRaw # 压缩算法 gzip | brotliCompress | deflate | deflateRaw
VITE_COMPRESS_TYPE=gzip VITE_COMPRESS_TYPE=gzip
# 是否开启打包依赖分析
VITE_VISUALIZER=N

1
.gitignore vendored
View File

@ -11,6 +11,7 @@ node_modules
dist dist
dist-ssr dist-ssr
*.local *.local
stats.html
# Editor directories and files # Editor directories and files
.vscode/* .vscode/*

View File

@ -2,6 +2,7 @@ import vue from './vue';
import compress from './compress'; import compress from './compress';
import html from './html'; import html from './html';
import unocss from './unocss'; import unocss from './unocss';
import visualizer from './visualizer';
/** /**
* @description: vite插件配置 * @description: vite插件配置
@ -10,10 +11,13 @@ import unocss from './unocss';
*/ */
export function setVitePlugins(env) { export function setVitePlugins(env) {
const plugins = [...vue, html(env), unocss]; const plugins = [...vue, html(env), unocss];
// 是否压缩
if (env.VITE_COMPRESS_OPEN === 'Y') { if (env.VITE_COMPRESS_OPEN === 'Y') {
plugins.push(compress(env)); plugins.push(compress(env));
} }
// 是否依赖分析
if (env.VITE_VISUALIZER === 'Y') {
plugins.push(visualizer);
}
return plugins; return plugins;
} }

View File

@ -1,3 +1,6 @@
import Unocss from 'unocss/vite'; // https://github.com/unocss/unocss import Unocss from 'unocss/vite'; // https://github.com/unocss/unocss
import { presetUno, presetAttributify, presetIcons } from 'unocss';
export default Unocss(); export default Unocss({
presets: [presetUno(), presetAttributify(), presetIcons()],
});

View File

@ -0,0 +1,6 @@
import { visualizer } from 'rollup-plugin-visualizer'; // https://github.com/btd/rollup-plugin-visualizer
export default visualizer({
gzipSize: true,
brotliSize: true,
open: true,
});

View File

@ -49,6 +49,7 @@
"husky": "^8.0.0", "husky": "^8.0.0",
"lint-staged": "^13.0.3", "lint-staged": "^13.0.3",
"prettier": "^2.7.1", "prettier": "^2.7.1",
"rollup-plugin-visualizer": "^5.7.1",
"typescript": "^4.6.4", "typescript": "^4.6.4",
"unocss": "^0.45.5", "unocss": "^0.45.5",
"vite": "^3.0.0", "vite": "^3.0.0",

View File

@ -12,7 +12,7 @@
<router-view></router-view> <router-view></router-view>
</template> </template>
<script> <script lang="ts">
export default {}; export default {};
</script> </script>

2
src/types/env.d.ts vendored
View File

@ -7,6 +7,8 @@ interface ImportMetaEnv {
readonly VITE_HTTP_PROXY?: 'Y' | 'N'; readonly VITE_HTTP_PROXY?: 'Y' | 'N';
/** 是否开启打包压缩 */ /** 是否开启打包压缩 */
readonly VITE_COMPRESS?: 'Y' | 'N'; readonly VITE_COMPRESS?: 'Y' | 'N';
/** 是否开启打包依赖分析 */
readonly VITE_VISUALIZER?: 'Y' | 'N';
/** 压缩算法类型 */ /** 压缩算法类型 */
readonly VITE_COMPRESS_TYPE?: 'gzip' | 'brotliCompress' | 'deflate' | 'deflateRaw'; readonly VITE_COMPRESS_TYPE?: 'gzip' | 'brotliCompress' | 'deflate' | 'deflateRaw';
/** hash路由模式 */ /** hash路由模式 */

View File

@ -1,6 +1,6 @@
<template> <template>
<div style="text-align: center">I prove that you have made the jump test1.</div> <div text-center bg-green-500 rounded c-rose>I prove that you have made the jump test1.</div>
<div class="c-yellow">Uno css</div> <div text-center c-yellow>Uno css</div>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">

View File

@ -1,5 +1,10 @@
<template> <template>
<div style="text-align: center">I prove that you have made the jump test2.</div> <div style="text-align: center">I prove that you have made the jump test2.</div>
<button
class="py-2 px-4 font-semibold rounded-lg shadow-md text-white bg-green-500 hover:bg-green-700 border-none cursor-pointer"
>
Click me
</button>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">

View File

@ -25,7 +25,7 @@ export default defineConfig(({ command, mode }: ConfigEnv) => {
}, },
server: { server: {
host: '0.0.0.0', host: '0.0.0.0',
port: 5200, port: 3000,
open: false, open: false,
proxy: createViteProxy(env), proxy: createViteProxy(env),
}, },