InvestWeb/next.config.js

22 lines
459 B
JavaScript
Raw Permalink Normal View History

2022-11-23 17:20:36 -05:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
2023-01-21 05:36:29 -05:00
domains: [
"cdn.discordapp.com",
"static-cdn.jtvnw.net",
"cdn.7tv.app",
"cdn.betterttv.net",
"cdn.frankerfacez.com",
],
},
2023-02-06 06:03:33 -05:00
i18n: {
// append/clean as needed
locales: ["en", "de", "fr", "es", "it", "pt", "ru", "zh", "ja", "ko"],
defaultLocale: "en",
},
2022-11-23 17:20:36 -05:00
};
module.exports = nextConfig;