-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
defaultRouterOptions is not exported properly #65
Comments
node/browserify will parse The tests are currently passing: https://travis-ci.org/TehShrike/abstract-state-router Are you using a different bundler? What's the symptom you ran into? |
I have the same problem and I am using webpack |
Webpack is unable to load json files via @TehShrike A possible workaround would be to make that .json file into a .js file... |
Patch published as 5.12.2. Would anyone be willing to open a pull request adding a new test file that attempts a build with Webpack to prevent any future issues with the Webpack build? |
I've found this solution to fix the problem:
in default-router-options.js:
var defaultRouterOptions = module.exports = { "reverse":true}
instead of:
{ "reverse":true}
The text was updated successfully, but these errors were encountered: