visual-journal / next.config.ts
gpt-image-playground deploy
Deploy 17eadcc to Docker Space
96bdf6c
Raw
History Blame Contribute Delete
306 Bytes
import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
allowedDevOrigins: ['127.0.0.1'],
output: 'standalone',
outputFileTracingExcludes: {
'*': ['./generated-images/**/*', './artifacts/**/*', './dist/**/*', './.next/cache/**/*']
}
};
export default nextConfig;