mirror of
https://github.com/onsonr/motr.git
synced 2025-03-11 09:39:10 +00:00
11 lines
205 B
TypeScript
11 lines
205 B
TypeScript
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vite";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
define: {
|
|
global: "window",
|
|
},
|
|
});
|