frontpage/next.config.js

11 lines
226 B
JavaScript
Raw Normal View History

2021-11-30 23:48:54 +01:00
/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
2022-07-30 17:48:18 +02:00
images: {
domains: ["openai-labs-public-images-prod.azureedge.net"]
},
i18n: {
locales: ["en"],
defaultLocale: "en",
2022-07-30 17:48:18 +02:00
}
};