mirror of
https://github.com/gethomepage/homepage.git
synced 2026-03-19 16:08:02 -04:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
20 lines
355 B
JavaScript
20 lines
355 B
JavaScript
const { i18n } = require("./next-i18next.config");
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
output: "standalone",
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "cdn.jsdelivr.net",
|
|
},
|
|
],
|
|
unoptimized: true,
|
|
},
|
|
i18n,
|
|
};
|
|
|
|
module.exports = nextConfig;
|