21 lines
418 B
JavaScript
21 lines
418 B
JavaScript
const withPWA = require("next-pwa");
|
|
|
|
module.exports = withPWA({
|
|
pwa: {
|
|
dest: "public"
|
|
},
|
|
async headers() {
|
|
return [
|
|
{
|
|
source: "/(.*)",
|
|
headers: [
|
|
{
|
|
key: "Permissions-Policy",
|
|
value: "interest-cohort=()"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
});
|