1
0
mirror of https://github.com/karl0ss/homepage.git synced 2025-05-16 11:28:11 +01:00
homepage/next.config.js
shamoon 8ec488efbd Revert "Fix: subdirectory deployment ()"
This revers commit b8eda91005f389eb2d907b8b56494b4f6df03447
2023-10-18 11:44:26 -07:00

16 lines
299 B
JavaScript

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;