1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-17 05:25:54 +02:00
.profile/next.config.js

42 lines
1.1 KiB
JavaScript
Raw Normal View History

2021-04-18 01:56:23 +02:00
const nextPWA = require('next-pwa')
const nextTranslate = require('next-translate')
const { createSecureHeaders } = require('next-secure-headers')
2021-04-18 01:56:23 +02:00
/** @type {import("next").NextConfig} */
2021-04-18 01:56:23 +02:00
module.exports = nextTranslate(
nextPWA({
2021-12-04 15:52:51 +01:00
reactStrictMode: true,
2021-04-18 01:56:23 +02:00
pwa: {
disable: process.env.NODE_ENV !== 'production',
dest: 'public'
},
2021-12-04 15:52:51 +01:00
headers() {
return [
{
source: '/:path*',
headers: createSecureHeaders({
contentSecurityPolicy: {
directives: {
defaultSrc: ["'self'"],
2022-02-22 21:19:42 +01:00
scriptSrc: [
"'self'",
'data:',
"'unsafe-eval'",
"'unsafe-inline'"
],
styleSrc: ["'self'", "'unsafe-inline'"],
imgSrc: ['*', 'data:', 'blob:'],
mediaSrc: "'none'",
connectSrc: '*',
objectSrc: "'none'",
fontSrc: "'self'",
baseURI: "'none'"
}
}
})
}
]
2021-04-18 01:56:23 +02:00
}
})
)