vegancheck.me/next.config.js
Philip ebf89df98b Added "surprise" language – Celebrating meme culture
Co-Authored-By: Der Gauner <87610380+gitgauner@users.noreply.github.com>
Co-Authored-By: fastrcloud <14810101+fastrcloud@users.noreply.github.com>
2023-02-26 19:31:41 +01:00

23 lines
No EOL
442 B
JavaScript

const withPWA = require('next-pwa')({
dest: 'public',
swSrc: 'service-worker.js'
})
/** @type {import('next').NextConfig} */
module.exports = withPWA({
reactStrictMode: true,
productionBrowserSourceMaps: true,
i18n: {
locales: ['de', 'en', 'fr', 'es', 'uwu'],
defaultLocale: 'en',
},
async rewrites() {
return [
{
source: '/datenschutz',
destination: '/privacy-policy',
},
]
}
});