homepage/next-pwa.config.js
2023-12-27 06:24:36 +03:00

14 lines
363 B
JavaScript

const withPWA = require("@ducanh2912/next-pwa").default({
dest: "public",
// TODO: add option to disable offline mode
// disable: typeof settings.offline === "boolean" ? !settings.offline : false,
reloadOnOnline: false,
fallbacks: {
document: "/_offline",
},
cacheStartUrl: true,
dynamicStartUrl: false,
});
module.exports.withPWA = withPWA;