mirror of
https://github.com/okiba-org/frontend.git
synced 2025-02-21 16:52:01 +00:00
8 lines
165 B
TypeScript
8 lines
165 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
});
|