mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-05 06:13:44 +08:00
* fix-migrate-tauri2-errors: (288 commits) # Conflicts: # .github/ISSUE_TEMPLATE/bug_report.yml
62 lines
1.5 KiB
TypeScript
62 lines
1.5 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",
|
|
},
|
|
],
|
|
}),
|
|
],
|
|
build: {
|
|
outDir: "../dist",
|
|
emptyOutDir: true,
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve("./src"),
|
|
"@root": path.resolve("."),
|
|
},
|
|
},
|
|
css: {
|
|
preprocessorOptions: {
|
|
scss: {
|
|
api: "modern-compiler",
|
|
},
|
|
},
|
|
},
|
|
define: {
|
|
OS_PLATFORM: `"${process.platform}"`,
|
|
},
|
|
});
|