UNPKG

react-app-rewired-preact

Version:

Tweak the create-react-app webpack config(s) without using 'eject' and without creating a fork of the react-scripts

8 lines (6 loc) 238 B
const { injectBabelPlugin } = require('react-app-rewired'); /* config-overrides.js */ module.exports = function override(config, env) { config = injectBabelPlugin('babel-plugin-transform-decorators-legacy', config); return config; }