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