1.0.9 • Published 6 years ago

react-app-rewire-mobx v1.0.9

Weekly downloads
1,459
License
MIT
Repository
-
Last release
6 years ago

Rewire create-react-app to use MobX

Install

$ npm install --save mobx mobx-react react-app-rewire-mobx

Add it to your project

const rewireMobX = require('react-app-rewire-mobx');

/* config-overrides.js */
module.exports = function override(config, env) {
  config = rewireMobX(config, env);
  return config;
}

Notes