vite-plugin-swc-react-refresh
TypeScript icon, indicating that this package has built-in type declarations

2.2.1 • Public • Published

vite-plugin-swc-react-refresh npm

Use the versatility of SWC for development and the maturity of esbuild for production.

Installation

npm i -D vite-plugin-swc-react-refresh

Usage

With the automatic JSX runtime (requires esbuild => 0.14.51):

import { defineConfig } from "vite";
import { swcReactRefresh } from "vite-plugin-swc-react-refresh";

export default defineConfig({
  plugins: [swcReactRefresh()],
  esbuild: { jsx: "automatic" },
});

Without the automatic JSX runtime, but still omitting the React default import:

import { defineConfig } from "vite";
import { swcReactRefresh } from "vite-plugin-swc-react-refresh";

export default defineConfig({
  plugins: [swcReactRefresh()],
  esbuild: { jsxInject: `import React from "react"` },
});

Consistent components exports

For React refresh to work, your file should only export React components. The best explanation I've read is the one from the Gatsby docs.

However, having some components being hot updated and not others is a very frustrating experience as a developer, and I think this rule should be enforced by a linter, so I made an eslint rule to go along with this plugin.

This plugin expects this rule to be respected and will always fast refresh components. If a file export something that is not a React component (TS types are ok), update to this export would not propagate and require a manual reload.

Package Sidebar

Install

npm i vite-plugin-swc-react-refresh

Weekly Downloads

238

Version

2.2.1

License

MIT

Unpacked Size

25.3 kB

Total Files

6

Last publish

Collaborators

  • arnaud-barre