mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +01:00
15 lines
279 B
JavaScript
15 lines
279 B
JavaScript
const { i18n } = require("./next-i18next.config");
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
output: "standalone",
|
|
images: {
|
|
domains: ["cdn.jsdelivr.net"],
|
|
unoptimized: true,
|
|
},
|
|
i18n,
|
|
};
|
|
|
|
module.exports = nextConfig;
|