feat: 清理一些package.json 页脚默认隐藏

master
LCJ-MinYa 1 year ago
parent 9d2e3a78b7
commit 6be67d6ba7

@ -1,5 +1,5 @@
{ {
"name": "pure-admin-thin", "name": "vue3-mgt-template",
"version": "5.8.0", "version": "5.8.0",
"private": true, "private": true,
"type": "module", "type": "module",
@ -20,32 +20,6 @@
"lint": "pnpm lint:eslint && pnpm lint:prettier && pnpm lint:stylelint", "lint": "pnpm lint:eslint && pnpm lint:prettier && pnpm lint:stylelint",
"preinstall": "npx only-allow pnpm" "preinstall": "npx only-allow pnpm"
}, },
"keywords": [
"pure-admin-thin",
"vue-pure-admin",
"element-plus",
"tailwindcss",
"pure-admin",
"typescript",
"pinia",
"vue3",
"vite",
"esm"
],
"homepage": "https://github.com/pure-admin/pure-admin-thin",
"repository": {
"type": "git",
"url": "git+https://github.com/pure-admin/pure-admin-thin.git"
},
"bugs": {
"url": "https://github.com/pure-admin/vue-pure-admin/issues"
},
"license": "MIT",
"author": {
"name": "xiaoxian521",
"email": "pureadmin@163.com",
"url": "https://github.com/xiaoxian521"
},
"dependencies": { "dependencies": {
"@pureadmin/descriptions": "^1.2.1", "@pureadmin/descriptions": "^1.2.1",
"@pureadmin/table": "^3.2.0", "@pureadmin/table": "^3.2.0",

@ -12,7 +12,7 @@
"Grey": false, "Grey": false,
"Weak": false, "Weak": false,
"HideTabs": false, "HideTabs": false,
"HideFooter": false, "HideFooter": true,
"Stretch": false, "Stretch": false,
"SidebarStatus": true, "SidebarStatus": true,
"EpThemeColor": "#409EFF", "EpThemeColor": "#409EFF",

@ -1,62 +1,55 @@
import { getPluginsList } from "./build/plugins"; import { getPluginsList } from './build/plugins';
import { include, exclude } from "./build/optimize"; import { include, exclude } from './build/optimize';
import { type UserConfigExport, type ConfigEnv, loadEnv } from "vite"; import { type UserConfigExport, type ConfigEnv, loadEnv } from 'vite';
import { import { root, alias, wrapperEnv, pathResolve, __APP_INFO__ } from './build/utils';
root,
alias,
wrapperEnv,
pathResolve,
__APP_INFO__
} from "./build/utils";
export default ({ mode }: ConfigEnv): UserConfigExport => { export default ({ mode }: ConfigEnv): UserConfigExport => {
const { VITE_CDN, VITE_PORT, VITE_COMPRESSION, VITE_PUBLIC_PATH } = const { VITE_CDN, VITE_PORT, VITE_COMPRESSION, VITE_PUBLIC_PATH } = wrapperEnv(loadEnv(mode, root));
wrapperEnv(loadEnv(mode, root));
return { return {
base: VITE_PUBLIC_PATH, base: VITE_PUBLIC_PATH,
root, root,
resolve: { resolve: {
alias alias,
}, },
// 服务端渲染 // 服务端渲染
server: { server: {
// 端口号 // 端口号
port: VITE_PORT, port: VITE_PORT,
host: "0.0.0.0", host: '0.0.0.0',
// 本地跨域代理 https://cn.vitejs.dev/config/server-options.html#server-proxy // 本地跨域代理 https://cn.vitejs.dev/config/server-options.html#server-proxy
proxy: {}, proxy: {},
// 预热文件以提前转换和缓存结果,降低启动期间的初始页面加载时长并防止转换瀑布 // 预热文件以提前转换和缓存结果,降低启动期间的初始页面加载时长并防止转换瀑布
warmup: { warmup: {
clientFiles: ["./index.html", "./src/{views,components}/*"] clientFiles: ['./index.html', './src/{views,components}/*'],
} },
}, },
plugins: getPluginsList(VITE_CDN, VITE_COMPRESSION), plugins: getPluginsList(VITE_CDN, VITE_COMPRESSION),
// https://cn.vitejs.dev/config/dep-optimization-options.html#dep-optimization-options // https://cn.vitejs.dev/config/dep-optimization-options.html#dep-optimization-options
optimizeDeps: { optimizeDeps: {
include, include,
exclude exclude,
}, },
build: { build: {
// https://cn.vitejs.dev/guide/build.html#browser-compatibility // https://cn.vitejs.dev/guide/build.html#browser-compatibility
target: "es2015", target: 'es2015',
sourcemap: false, sourcemap: false,
// 消除打包大小超过500kb警告 // 消除打包大小超过500kb警告
chunkSizeWarningLimit: 4000, chunkSizeWarningLimit: 4000,
rollupOptions: { rollupOptions: {
input: { input: {
index: pathResolve("./index.html", import.meta.url) index: pathResolve('./index.html', import.meta.url),
}, },
// 静态资源分类打包 // 静态资源分类打包
output: { output: {
chunkFileNames: "static/js/[name]-[hash].js", chunkFileNames: 'static/js/[name]-[hash].js',
entryFileNames: "static/js/[name]-[hash].js", entryFileNames: 'static/js/[name]-[hash].js',
assetFileNames: "static/[ext]/[name]-[hash].[ext]" assetFileNames: 'static/[ext]/[name]-[hash].[ext]',
} },
} },
}, },
define: { define: {
__INTLIFY_PROD_DEVTOOLS__: false, __INTLIFY_PROD_DEVTOOLS__: false,
__APP_INFO__: JSON.stringify(__APP_INFO__) __APP_INFO__: JSON.stringify(__APP_INFO__),
} },
}; };
}; };

Loading…
Cancel
Save