UNPKG

@tanstack/router-plugin

Version:

Modern and scalable routing for React applications

26 lines (24 loc) 974 B
import { createReactRefreshIgnoredRouteExportsPlugin } from './react-refresh-ignored-route-exports' import { createReactRefreshRouteComponentsPlugin } from './react-refresh-route-components' import { createReactStableHmrSplitRouteComponentsPlugin } from './react-stable-hmr-split-route-components' import type { CodeSplitCompilerPlugin } from '../plugins' import type { Config, HmrStyle } from '../../config' export function getFrameworkHmrCompilerPlugins(opts: { targetFramework: Config['target'] hmrStyle?: HmrStyle }): Array<CodeSplitCompilerPlugin> | undefined { switch (opts.targetFramework) { case 'react': { const hmrStyle = opts.hmrStyle ?? 'vite' return [ ...(hmrStyle === 'vite' ? [createReactRefreshIgnoredRouteExportsPlugin()] : []), createReactRefreshRouteComponentsPlugin(), createReactStableHmrSplitRouteComponentsPlugin({ hmrStyle }), ] } default: return undefined } }