Home > @lynx-js/react-rsbuild-plugin > AddComponentElementConfig > compilerOnly

AddComponentElementConfig.compilerOnly property

Whether to only add component element during compilation

Signature:

compilerOnly: boolean

Example

Note that this only take effects on Component imported from CompatVisitorConfig.oldRuntimePkg.

import { defineConfig } from '@lynx-js/rspeedy'
import { pluginReactLynx } from '@lynx-js/react-rsbuild-plugin'

export default defineConfig({
  plugins: [
    pluginReactLynx({
      compat: {
        addComponentElement: { compilerOnly: true }
      },
    })
  ],
})
Except as otherwise noted, this work is licensed under a Creative Commons Attribution 4.0 International License, and code samples are licensed under the Apache License 2.0.