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