Skip to content
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

add info regarding html-webpack-plugin #458

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ Make sure you are using the correct [prefetchRequest.credentials](options.md#ser

There are multiple ways to fix this depending on your setup. One way is to set [cacheMaps.requestTypes](cache-maps.md) to `['navigate']`, caching only those requests.

#### I am using `html-webpack-plugin` and `manifest="manifest.appcache"` is being appended to my `<html>` tag

Webpack executes plugins in the order they're listed in the webpack configuration. `offline-plugin` must be listed (and executed) after `html-webpack-plugin` for it to work properly.

#### AppCache events are not working properly

`AppCache.events` are known to be a bit buggy (see [updates](updates.md)). Try to avoid using them if possible.
Expand Down