Hacker News new | ask | show | jobs
by shepherdjerred 454 days ago
Building a React app "from scratch" with Vite is this complicated:

import { defineConfig } from 'vite'

import react from '@vitejs/plugin-react'

export default defineConfig({

  plugins: [react()],
})