Hacker News new | ask | show | jobs
by sureIy 448 days ago
Not everyone wants to build a website from scratch. Most people hate build systems.
1 comments

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()],
})