Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/homepage/src/commit/713cb217e4d9b38a7af1c797ae2a2efc352d63a5/next.config.js
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
const { i18n } = require("./next-i18next.config");
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
output: "standalone",
|
|
swcMinify: false,
|
|
images: {
|
|
domains: ["cdn.jsdelivr.net"],
|
|
unoptimized: true,
|
|
},
|
|
i18n,
|
|
};
|
|
|
|
module.exports = nextConfig;
|