homepage/next.config.js
2024-02-06 01:25:01 +01:00

14 lines
256 B
JavaScript

const { i18n } = require("./next-i18next.config");
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: "standalone",
images: {
domains: ["cdn.jsdelivr.net"],
},
i18n,
};
module.exports = nextConfig;