homepage/next.config.js

15 lines
279 B
JavaScript
Raw Normal View History

2022-09-25 16:43:00 +00:00
const { i18n } = require("./next-i18next.config");
2022-08-14 09:02:58 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
2022-08-24 07:44:35 +00:00
output: "standalone",
images: {
domains: ["cdn.jsdelivr.net"],
unoptimized: true,
2022-08-24 07:44:35 +00:00
},
2022-09-25 16:43:00 +00:00
i18n,
2022-08-24 07:44:35 +00:00
};
2022-08-14 09:02:58 +00:00
2022-08-24 07:44:35 +00:00
module.exports = nextConfig;