Scaffold Vite 8 + React 19 + TypeScript project using the react-ts template. Removes the previous plain HTML/CSS/JS files and replaces them with the Vite scaffold. npm run dev verified to start without errors. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
8 lines
161 B
TypeScript
8 lines
161 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
})
|