You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.
I want to change cache strategy between js files, css files, and other.
// js files match this routeself.toolbox.router.get("/:path+.js",self.toolbox.networkFirst);// all files except js files match this route self.toolbox.router.get("/:path+.(.*)",self.toolbox.networkOnly);// no match this route. css files does not match this routeself.toolbox.router.get("/:path+.css",self.toolbox.cacheFirst);
Is it by design?
What is the specification of route priority?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have a question about routing.
I want to change cache strategy between js files, css files, and other.
Is it by design?
What is the specification of route priority?
The text was updated successfully, but these errors were encountered: