mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-05 07:43:44 +08:00
147 lines
4.3 KiB
TypeScript
147 lines
4.3 KiB
TypeScript
import { defineConfig } from "vite";
|
|
import path from "path";
|
|
import svgr from "vite-plugin-svgr";
|
|
import react from "@vitejs/plugin-react";
|
|
import legacy from "@vitejs/plugin-legacy";
|
|
import monacoEditorPlugin, {
|
|
type IMonacoEditorOpts,
|
|
} from "vite-plugin-monaco-editor";
|
|
const monacoEditorPluginDefault = (monacoEditorPlugin as any).default as (
|
|
options: IMonacoEditorOpts,
|
|
) => any;
|
|
|
|
export default defineConfig({
|
|
root: "src",
|
|
server: { port: 3000 },
|
|
plugins: [
|
|
svgr(),
|
|
react(),
|
|
legacy({
|
|
renderLegacyChunks: false,
|
|
modernTargets: ["edge>=109", "safari>=13"],
|
|
modernPolyfills: true,
|
|
additionalModernPolyfills: [
|
|
"core-js/modules/es.object.has-own.js",
|
|
"core-js/modules/web.structured-clone.js",
|
|
path.resolve("./src/polyfills/matchMedia.js"),
|
|
path.resolve("./src/polyfills/WeakRef.js"),
|
|
path.resolve("./src/polyfills/RegExp.js"),
|
|
],
|
|
}),
|
|
monacoEditorPluginDefault({
|
|
languageWorkers: ["editorWorkerService", "typescript", "css"],
|
|
customWorkers: [
|
|
{
|
|
label: "yaml",
|
|
entry: "monaco-yaml/yaml.worker",
|
|
},
|
|
],
|
|
globalAPI: false,
|
|
}),
|
|
],
|
|
build: {
|
|
outDir: "../dist",
|
|
emptyOutDir: true,
|
|
target: "es2020",
|
|
minify: "terser",
|
|
chunkSizeWarningLimit: 4000,
|
|
reportCompressedSize: false,
|
|
sourcemap: false,
|
|
cssCodeSplit: true,
|
|
cssMinify: true,
|
|
rollupOptions: {
|
|
treeshake: {
|
|
preset: "recommended",
|
|
moduleSideEffects: (id) => !/\.css$/.test(id),
|
|
tryCatchDeoptimization: false,
|
|
},
|
|
output: {
|
|
compact: true,
|
|
experimentalMinChunkSize: 30000,
|
|
dynamicImportInCjs: true,
|
|
manualChunks(id) {
|
|
if (id.includes("node_modules")) {
|
|
// Monaco Editor should be a separate chunk
|
|
if (id.includes("monaco-editor")) return "monaco-editor";
|
|
|
|
// React-related libraries (react, react-dom, react-router-dom, etc.)
|
|
if (
|
|
id.includes("react") ||
|
|
id.includes("react-dom") ||
|
|
id.includes("react-router-dom") ||
|
|
id.includes("react-transition-group") ||
|
|
id.includes("react-error-boundary") ||
|
|
id.includes("react-hook-form") ||
|
|
id.includes("react-markdown") ||
|
|
id.includes("react-virtuoso")
|
|
) {
|
|
return "react";
|
|
}
|
|
|
|
// Utilities chunk: group commonly used utility libraries
|
|
if (
|
|
id.includes("axios") ||
|
|
id.includes("lodash-es") ||
|
|
id.includes("dayjs") ||
|
|
id.includes("js-base64") ||
|
|
id.includes("js-yaml") ||
|
|
id.includes("cli-color") ||
|
|
id.includes("nanoid")
|
|
) {
|
|
return "utils";
|
|
}
|
|
|
|
// Tauri-related plugins: grouping together Tauri plugins
|
|
if (
|
|
id.includes("@tauri-apps/api") ||
|
|
id.includes("@tauri-apps/plugin-clipboard-manager") ||
|
|
id.includes("@tauri-apps/plugin-dialog") ||
|
|
id.includes("@tauri-apps/plugin-fs") ||
|
|
id.includes("@tauri-apps/plugin-global-shortcut") ||
|
|
id.includes("@tauri-apps/plugin-notification") ||
|
|
id.includes("@tauri-apps/plugin-process") ||
|
|
id.includes("@tauri-apps/plugin-shell") ||
|
|
id.includes("@tauri-apps/plugin-updater")
|
|
) {
|
|
return "tauri-plugins";
|
|
}
|
|
|
|
// Material UI libraries (grouped together)
|
|
if (
|
|
id.includes("@mui/material") ||
|
|
id.includes("@mui/icons-material") ||
|
|
id.includes("@mui/lab") ||
|
|
id.includes("@mui/x-data-grid")
|
|
) {
|
|
return "mui";
|
|
}
|
|
|
|
// Small vendor packages
|
|
const pkg = id.match(/node_modules\/([^\/]+)/)?.[1];
|
|
if (pkg && pkg.length < 8) return "small-vendors";
|
|
|
|
// Large vendor packages
|
|
return "large-vendor";
|
|
}
|
|
},
|
|
},
|
|
},
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve("./src"),
|
|
"@root": path.resolve("."),
|
|
},
|
|
},
|
|
css: {
|
|
preprocessorOptions: {
|
|
scss: {
|
|
api: "modern-compiler",
|
|
},
|
|
},
|
|
},
|
|
define: {
|
|
OS_PLATFORM: `"${process.platform}"`,
|
|
},
|
|
});
|