vegancheck.me/next.config.js
2023-02-13 19:18:33 +01:00

14 lines
No EOL
263 B
JavaScript

const withPWA = require('next-pwa')({
dest: 'public',
swSrc: 'service-worker.js'
})
/** @type {import('next').NextConfig} */
module.exports = withPWA({
reactStrictMode: true,
i18n: {
locales: ['de', 'en', 'fr', 'es'],
defaultLocale: 'en',
}
})