All checks were successful
Next.js App CI / docker (push) Successful in 6m17s
17 lines
318 B
TypeScript
17 lines
318 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* your other config options here */
|
|
output: 'standalone',
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "*.steffenillium.de",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|