forked from external-repos/LifeTrinket
13 lines
249 B
TypeScript
13 lines
249 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react-swc'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
build: {
|
|
rollupOptions: {
|
|
external: ['babel-plugin-macros']
|
|
}
|
|
}
|
|
})
|