mirror of
https://github.com/AtHeartEngineering/bandada.git
synced 2026-01-09 18:18:19 -05:00
9 lines
248 B
TypeScript
9 lines
248 B
TypeScript
import react from "@vitejs/plugin-react"
|
|
import { defineConfig } from "vite"
|
|
import { nodePolyfills } from "vite-plugin-node-polyfills"
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig(() => ({
|
|
plugins: [nodePolyfills(), react()]
|
|
}))
|