17 lines
324 B
TypeScript
17 lines
324 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
// Produce a self-contained server bundle at .next/standalone
|
|
output: 'standalone',
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'images.unsplash.com',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|