Malcolm Dwyer

Results 4 comments of Malcolm Dwyer

Are you sure you want `/dist` and `/static` ... those paths would point to the root of your file system, right? Try this: ... ` && cpx \"dist/*.js\" \"static/\"",`

See over in #37 ... this might be caused by storybook-router having a problem with imports from 'react-router-dom'. (You didn't show your import in your top file... but I'm guessing...

Workaround... not using storybook-router... ```javascript import { MemoryRouter as Router } from 'react-router-dom'; .addDecorator(story => ( {story()} ) ``` I guess my use case is simple, so I don't need...

For people following tutorials and still landing here, use this instead of `flask_graphql`: ``` from graphql_server.flask import GraphQLView ``` Example: https://github.com/graphql-python/graphql-server/blob/master/docs/flask.md