mirror of
https://github.com/Vikeo/LifeTrinket.git
synced 2025-11-15 15:27:59 +00:00
14 lines
278 B
TypeScript
14 lines
278 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react-swc';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
build: {
|
|
minify: 'esbuild',
|
|
rollupOptions: {
|
|
external: ['babel-plugin-macros'],
|
|
},
|
|
},
|
|
});
|