diff --git a/README.md b/README.md index 1cb5b928..1efaaf2b 100644 --- a/README.md +++ b/README.md @@ -8,23 +8,6 @@ **This release is a developer preview.** We are looking for community help to track down and fix bugs. We are also looking for help integrating with existing MVC frameworks, as well as ports to other platforms. -## Important Note for Webpack Users - -If you're including falcor in your app, via npm and `require('falcor')`, and you're building a browser bundle for your app with Webpack, you'll need to add an alias entry for the 'rx' module in your webpack config, to avoid this RxJS bug: 'https://github.com/Reactive-Extensions/RxJS/issues/832'. You may already have such an entry, if you're using RxJS already. An example is below: - -In webpack.config.js: - -```js -module.exports = { - resolve: { - alias: { - // Workaround https://github.com/Reactive-Extensions/RxJS/issues/832, until it's fixed - 'rx$': - } - } -}; -``` - ## Getting Started You can check out a working example server for a Netflix-like application [here](http://github.com/netflix/falcor-express-demo) right now. Alternately you can go through this barebones tutorial in which we use the Falcor Router to create a Virtual JSON resource. In this tutorial we will use Falcor's express middleware to serve the Virtual JSON resource on an application server at the URL /model.json. We will also host a static web page on the same server which retrieves data from the Virtual JSON resource. diff --git a/webpack.config.js b/webpack.config.js deleted file mode 100644 index 491c9865..00000000 --- a/webpack.config.js +++ /dev/null @@ -1,8 +0,0 @@ -module.exports = { - resolve: { - alias: { - // Workaround https://github.com/Reactive-Extensions/RxJS/issues/832, until it's fixed - 'rx$': require.resolve('rx/dist/rx') - } - } -}; \ No newline at end of file