Ben Winding

Results 95 comments of Ben Winding

> Is this repository dead? this doesn't seem like that much of an issue to fix this bug. I'm very busy at the moment, feel free to contribute a PR...

I'm also getting this issue. When a file is modified in the sapper template, the following error occurs on the browser: ``` Uncaught TypeError: Cannot read property 'status' of undefined...

Related to: https://github.com/sveltejs/sapper/issues/764 Seems to be fixed by changing the dev script in **package.json** from `sapper dev` to this `sapper dev --no-hot`: ``` ... "scripts": { "dev": "sapper dev --no-hot",...

Still not fixed, I just deleted the service-worker and the corresponding service-worker configuration in the webpack config file.

@halverneus this is a pretty important issue for any JS application. The typical implementation is to just redirect 404 errors to a `404.html` page in the root of the server....

Hi @beeman, Thanks for checking out the project and I appreciate the kind words. > I'm wondering if you have considered trying to implement this using a plugin that could...

Hi @edbzn, Thanks for checking it out, appreciate the feedback. This command could potentially grab the project name from an environment variable, or another command could be created, especially for...

Hi @Chihab, Thanks for reminding me, I will edit the documentation to be consistent with the implemented library. I would ideally like to use the decorator `@Page` or something different,...

Thanks @AdrianSima ! The only thing I would add, is that it's much safer to use the exact commit on the git repo, as the current master branch is broken....

To use this fix in your flutter project, add this to the `pubspec.yaml` ``` yaml media_gallery: git: url: git://github.com/rignaneseleo/media_gallery ref: f277e8c5955bc824feb700600d641df75329124e ```