插件总览 - EMP - 基于Rust生态打造的高性能前端构建系统

插件总览

通过emp-config.js中通过plugins选项来注册插件

code

framework

tool

可以参考配置如下:

emp-config.js

import pluginReact from '@empjs/plugin-react'
import {defineConfig} from '@empjs/cli'
export default defineConfig(store => {
  return {
    plugins:[pluginReact({svgrQuery: 'react'})]
  }
})