mirror of
https://github.com/lumehq/lume.git
synced 2025-03-18 22:01:43 +01:00
37 lines
971 B
TypeScript
37 lines
971 B
TypeScript
import react from "@vitejs/plugin-react-swc";
|
|
import million from "million/compiler";
|
|
import { defineConfig } from "vite";
|
|
import topLevelAwait from "vite-plugin-top-level-await";
|
|
import viteTsconfigPaths from "vite-tsconfig-paths";
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
million.vite({
|
|
auto: {
|
|
threshold: 0.05,
|
|
},
|
|
mute: true,
|
|
}),
|
|
react(),
|
|
viteTsconfigPaths(),
|
|
topLevelAwait({
|
|
// The export name of top-level await promise for each chunk module
|
|
promiseExportName: "__tla",
|
|
// The function to generate import names of top-level await promise in each chunk module
|
|
promiseImportName: (i) => `__tla_${i}`,
|
|
}),
|
|
],
|
|
envPrefix: ["VITE_", "TAURI_"],
|
|
build: {
|
|
target: process.env.TAURI_PLATFORM === "windows" ? "chrome105" : "safari13",
|
|
minify: !process.env.TAURI_DEBUG ? "esbuild" : false,
|
|
sourcemap: !!process.env.TAURI_DEBUG,
|
|
outDir: "../../dist",
|
|
},
|
|
server: {
|
|
strictPort: true,
|
|
port: 3000,
|
|
},
|
|
clearScreen: false,
|
|
});
|