2022-11-16 21:33:49 +08:00
|
|
|
import { defineConfig } from "vite";
|
|
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
2022-12-17 20:34:49 +08:00
|
|
|
optimizeDeps: {
|
|
|
|
esbuildOptions: {
|
|
|
|
target: 'es2020',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
react({
|
|
|
|
babel: {
|
|
|
|
plugins: [
|
|
|
|
'babel-plugin-macros',
|
|
|
|
[
|
|
|
|
'@emotion/babel-plugin-jsx-pragmatic',
|
|
|
|
{
|
|
|
|
export: 'jsx',
|
|
|
|
import: '__cssprop',
|
|
|
|
module: '@emotion/react',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
['@babel/plugin-transform-react-jsx', { pragma: '__cssprop' }, 'twin.macro'],
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
],
|
2022-11-16 21:33:49 +08:00
|
|
|
|
|
|
|
// Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`
|
|
|
|
// prevent vite from obscuring rust errors
|
|
|
|
clearScreen: false,
|
|
|
|
// tauri expects a fixed port, fail if that port is not available
|
|
|
|
server: {
|
|
|
|
port: 1420,
|
|
|
|
strictPort: true,
|
|
|
|
},
|
|
|
|
// to make use of `TAURI_DEBUG` and other env variables
|
|
|
|
// https://tauri.studio/v1/api/config#buildconfig.beforedevcommand
|
2022-12-17 20:34:49 +08:00
|
|
|
envPrefix: ['VITE_', 'TAURI_'],
|
2022-11-16 21:33:49 +08:00
|
|
|
build: {
|
|
|
|
// Tauri supports es2021
|
2022-12-17 20:34:49 +08:00
|
|
|
target: ['es2021', 'chrome100', 'safari13'],
|
2022-11-16 21:33:49 +08:00
|
|
|
// don't minify for debug builds
|
2022-12-17 20:34:49 +08:00
|
|
|
minify: !process.env.TAURI_DEBUG ? 'esbuild' : false,
|
2022-11-16 21:33:49 +08:00
|
|
|
// produce sourcemaps for debug builds
|
|
|
|
sourcemap: !!process.env.TAURI_DEBUG,
|
|
|
|
},
|
|
|
|
});
|