chore: enable standalone output for docker

This commit is contained in:
mstfyldz
2026-06-03 17:29:50 +03:00
parent b6a0684a66
commit 8050d67b18
+9 -1
View File
@@ -1,7 +1,15 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "images.unsplash.com",
},
],
},
};
export default nextConfig;