Files
LingvAI/next.config.js
2021-08-28 15:55:21 +02:00

24 lines
462 B
JavaScript

const withPWA = require("next-pwa");
module.exports = withPWA({
pwa: {
dest: "public"
},
future: {
webpack5: true
},
async headers() {
return [
{
source: "/(.*)",
headers: [
{
key: "Permissions-Policy",
value: "interest-cohort=()"
}
]
}
]
}
});