Files
LingvAI/next.config.js
David 47aa0c3b0e Update dependencies again (#37)
* Initial Next update to canary

* Dependencies updated

* Dependencies updated for real
2021-08-28 15:55:41 +02:00

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=()"
}
]
}
]
}
});