UNPKG

babel-plugin-react-ssr

Version:

Adds the ssrWaitsFor array and ssrFetchData HOC on required components automatically for react-ssr.

16 lines (14 loc) 249 B
import babel from 'rollup-plugin-babel' export default { name: 'babel-plugin-react-ssr', input: 'src/index.js', output: { file: 'lib/index.js', format: 'umd' }, plugins: [ babel({ exclude: 'node_modules/**' }) ] }