2022-09-25 19:43:00 +03:00
|
|
|
const { i18n } = require("./next-i18next.config");
|
|
|
|
|
2022-08-14 12:02:58 +03:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
2023-10-18 23:49:42 +08:00
|
|
|
assetPrefix: ".",
|
2022-08-14 12:02:58 +03:00
|
|
|
reactStrictMode: true,
|
2022-08-24 10:44:35 +03:00
|
|
|
output: "standalone",
|
2022-09-07 12:14:06 +03:00
|
|
|
swcMinify: false,
|
2022-08-24 10:44:35 +03:00
|
|
|
images: {
|
|
|
|
domains: ["cdn.jsdelivr.net"],
|
2022-09-12 14:30:57 +03:00
|
|
|
unoptimized: true,
|
2022-08-24 10:44:35 +03:00
|
|
|
},
|
2022-09-25 19:43:00 +03:00
|
|
|
i18n,
|
2022-08-24 10:44:35 +03:00
|
|
|
};
|
2022-08-14 12:02:58 +03:00
|
|
|
|
2022-08-24 10:44:35 +03:00
|
|
|
module.exports = nextConfig;
|