10 lines
333 B
JavaScript
10 lines
333 B
JavaScript
/** @type {import('workbox-build').GenerateSWOptions} */
|
|
module.exports = {
|
|
globDirectory: "dist",
|
|
globPatterns: ["**/*.{js,css,html,ico,png,json,woff2,svg,webp}"],
|
|
globIgnores: ["**/node_modules/**"],
|
|
swDest: "dist/service-worker.js",
|
|
navigateFallback: "/index.html",
|
|
navigateFallbackDenylist: [/^\/api/, /^\/auth/],
|
|
};
|