mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
8 lines
166 B
JavaScript
8 lines
166 B
JavaScript
|
import { defineConfig } from "vite";
|
||
|
import react from "@vitejs/plugin-react";
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [react()],
|
||
|
});
|