项目作者: mikhail-ev

项目描述 :
stringify-jsx plugin for rollup
高级语言: JavaScript
项目地址: git://github.com/mikhail-ev/rollup-plugin-stringify-jsx.git
创建时间: 2019-10-04T09:01:23Z
项目社区:https://github.com/mikhail-ev/rollup-plugin-stringify-jsx

开源协议:MIT License

下载


rollup-plugin-stringify-jsx

Stringify-jsx plugin for rollup.

Quick start

  1. npm i --save-dev rollup-plugin-stringify-jsx
  1. import stringifyJsx from 'rollup-plugin-stringify-jsx';
  2. export default {
  3. input: ['src/index.js'],
  4. output: {
  5. file: 'build/index.js'
  6. },
  7. plugins: [
  8. stringifyJsx( /* stringify-jsx options */ ),
  9. ]
  10. };

Explore example project for more information.