11 lines
197 B
TypeScript
11 lines
197 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
images: {
|
|
domains: ['localhost', 'images.unsplash.com'],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|