4.0.4 • Published 5 months ago

@witejs/plugin-react v4.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

@witejs/plugin-react

The all-in-one Wite plugin for React projects.

  • enable Fast Refresh in development
  • use the automatic JSX runtime
  • avoid manual import React in .jsx and .tsx modules
  • dedupe the react and react-dom packages
  • use custom Babel plugins/presets
// wite.config.js
import { defineConfig } from 'wite'
import react from '@witejs/plugin-react'

export default defineConfig({
  plugins: [react()],
})