Files
LingvAI/next.config.js
David c244c007e1 Update dependencies & URL slash bugfix (#36)
* Initial Next update to canary

* Dependencies updated
2021-08-28 15:36:21 +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=()"
}
]
}
]
}
});