Package Exports
- unplugin-stylex
 - unplugin-stylex/esbuild
 - unplugin-stylex/farm
 - unplugin-stylex/rolldown
 - unplugin-stylex/rollup
 - unplugin-stylex/rspack
 - unplugin-stylex/types
 - unplugin-stylex/vite
 - unplugin-stylex/webpack
 
Readme
unplugin-stylex · 
 
[!WARNING]
This plugin is in early development and may not work as expected. Please report any issues you find.
Installation
Install the package from the following command
npm install unplugin-stylex --save-devor with yarn:
yarn add unplugin-stylex --save-devor with pnpm:
pnpm i unplugin-stylex --save-devConfiguration
vite
// vite.config.js
import { defineConfig } from 'vite'
import stylexPlugin from 'unplugin-stylex/vite'
export default defineConfig({
  plugins: [
    stylexPlugin({ /* options */}),
  ],
})esbuild
// esbuild.config.js
import { build } from 'esbuild'
import stylexPlugin from 'unplugin-stylex/esbuild'
export default {
  plugins: [
    stylexPlugin({ /* options */ }),
  ],
}farm
// farm.config.js
import { defineConfig } from '@farmfe/core'
import stylexPlugin from 'unplugin-stylex/farm'
export default defineConfig({
  // other rollup config
  plugins: [
    stylexPlugin({ /* options */}),
  ],
})rspack
// rspack.config.js
import stylexPlugin from 'unplugin-stylex/rspack'
module.exports = {
  // other rspack config
  plugins: [
    stylexPlugin({ /* options */}),
  ],
}rolldown(⚠️ experimental)
// rolldown.config.js
import stylexRolldownPlugin from 'unplugin-stylex/rolldown'
export default {
  // other rolldown config
  plugins: [
    stylexRolldownPlugin({ /* options */}),
  ],
}rollup
// rollup.config.js
import stylexRollupPlugin from 'unplugin-stylex/rollup'
export default {
  // other rollup config
  plugins: [
    stylexRollupPlugin({ /* options */}),
  ],
}webpack
// webpack.config.js
import stylexWebpackPlugin from 'unplugin-stylex/webpack'
module.exports = {
  // other webpack config
  plugins: [
    stylexWebpackPlugin({ /* options */}),
  ],
}Usage
More detail usage can check examples
Options
Current support argument, which may have change in the future