9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
|
|
import type { NextConfig } from 'next';
|
||
|
|
|
||
|
|
const nextConfig: NextConfig = {
|
||
|
|
images: { unoptimized: true },
|
||
|
|
output: process.env.DOCKER_BUILD ? 'standalone' : undefined,
|
||
|
|
};
|
||
|
|
|
||
|
|
export default nextConfig;
|