2023-12-06 05:41:45 +00:00
|
|
|
/* eslint-disable no-undef */
|
2023-08-14 03:46:28 +00:00
|
|
|
import { defineConfig, loadEnv } from "vite";
|
|
|
|
import { ElementPlusResolver } from "unplugin-vue-components/resolvers";
|
|
|
|
import { resolve } from "path";
|
|
|
|
import { VitePWA } from "vite-plugin-pwa";
|
|
|
|
import vue from "@vitejs/plugin-vue";
|
|
|
|
import AutoImport from "unplugin-auto-import/vite";
|
|
|
|
import Components from "unplugin-vue-components/vite";
|
|
|
|
import viteCompression from "vite-plugin-compression";
|
2022-11-15 14:19:29 +00:00
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
2023-08-14 03:46:28 +00:00
|
|
|
export default ({ mode }) =>
|
|
|
|
defineConfig({
|
|
|
|
plugins: [
|
|
|
|
vue(),
|
|
|
|
AutoImport({
|
2023-08-17 03:54:26 +00:00
|
|
|
imports: ["vue"],
|
2023-08-14 03:46:28 +00:00
|
|
|
resolvers: [ElementPlusResolver()],
|
|
|
|
}),
|
|
|
|
Components({
|
|
|
|
resolvers: [ElementPlusResolver()],
|
|
|
|
}),
|
|
|
|
VitePWA({
|
|
|
|
registerType: "autoUpdate",
|
|
|
|
workbox: {
|
|
|
|
skipWaiting: true,
|
|
|
|
clientsClaim: true,
|
|
|
|
runtimeCaching: [
|
|
|
|
{
|
|
|
|
urlPattern: /(.*?)\.(js|css|woff2|woff|ttf)/, // js / css 静态资源缓存
|
|
|
|
handler: "CacheFirst",
|
|
|
|
options: {
|
|
|
|
cacheName: "js-css-cache",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
urlPattern: /(.*?)\.(png|jpe?g|svg|gif|bmp|psd|tiff|tga|eps)/, // 图片缓存
|
|
|
|
handler: "CacheFirst",
|
|
|
|
options: {
|
|
|
|
cacheName: "image-cache",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2022-11-15 14:19:29 +00:00
|
|
|
},
|
2023-08-14 03:46:28 +00:00
|
|
|
manifest: {
|
|
|
|
name: loadEnv(mode, process.cwd()).VITE_SITE_NAME,
|
|
|
|
short_name: loadEnv(mode, process.cwd()).VITE_SITE_NAME,
|
|
|
|
description: loadEnv(mode, process.cwd()).VITE_SITE_DES,
|
|
|
|
display: "standalone",
|
|
|
|
start_url: "/",
|
|
|
|
theme_color: "#424242",
|
|
|
|
background_color: "#424242",
|
|
|
|
icons: [
|
|
|
|
{
|
|
|
|
src: "/images/icon/48.png",
|
|
|
|
sizes: "48x48",
|
|
|
|
type: "image/png",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: "/images/icon/72.png",
|
|
|
|
sizes: "72x72",
|
|
|
|
type: "image/png",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: "/images/icon/96.png",
|
|
|
|
sizes: "96x96",
|
|
|
|
type: "image/png",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: "/images/icon/128.png",
|
|
|
|
sizes: "128x128",
|
|
|
|
type: "image/png",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: "/images/icon/144.png",
|
|
|
|
sizes: "144x144",
|
|
|
|
type: "image/png",
|
2023-01-15 09:47:35 +00:00
|
|
|
},
|
2023-08-14 03:46:28 +00:00
|
|
|
{
|
|
|
|
src: "/images/icon/192.png",
|
|
|
|
sizes: "192x192",
|
|
|
|
type: "image/png",
|
2023-01-15 09:47:35 +00:00
|
|
|
},
|
2023-08-14 03:46:28 +00:00
|
|
|
{
|
|
|
|
src: "/images/icon/512.png",
|
|
|
|
sizes: "512x512",
|
|
|
|
type: "image/png",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
viteCompression(),
|
|
|
|
],
|
|
|
|
server: {
|
|
|
|
port: "3000",
|
2023-08-16 10:24:10 +00:00
|
|
|
open: true,
|
2023-08-14 03:46:28 +00:00
|
|
|
},
|
|
|
|
resolve: {
|
|
|
|
alias: [
|
|
|
|
{
|
|
|
|
find: "@",
|
|
|
|
replacement: resolve(__dirname, "src"),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
css: {
|
|
|
|
preprocessorOptions: {
|
|
|
|
scss: {
|
|
|
|
charset: false,
|
|
|
|
additionalData: `@import "./src/style/global.scss";`,
|
|
|
|
},
|
2023-01-15 09:47:35 +00:00
|
|
|
},
|
2023-08-14 03:46:28 +00:00
|
|
|
},
|
|
|
|
build: {
|
|
|
|
minify: "terser",
|
|
|
|
terserOptions: {
|
|
|
|
compress: {
|
|
|
|
pure_funcs: ["console.log"],
|
|
|
|
},
|
2023-01-14 11:34:39 +00:00
|
|
|
},
|
|
|
|
},
|
2023-08-14 03:46:28 +00:00
|
|
|
});
|