123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 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 monacoEditor from "vite-plugin-monaco-editor";
- export default defineConfig({
- root: "src",
- server: { port: 3000 },
- plugins: [
- svgr(),
- react(),
- legacy({
- targets: ["edge>=109", "safari>=13"],
- modernPolyfills: true,
- polyfills: ["web.structured-clone"],
- additionalModernPolyfills: [
- "matchmedia-polyfill",
- "matchmedia-polyfill/matchMedia.addListener",
- path.resolve("./src/polyfills/WeakRef.js"),
- path.resolve("./src/polyfills/RegExp.js"),
- ],
- }),
- monacoEditor({
- 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("."),
- },
- },
- define: {
- OS_PLATFORM: `"${process.platform}"`,
- },
- });
|