Spaces:
Running
Running
File size: 306 Bytes
96bdf6c c7d34c1 96bdf6c c7d34c1 | 1 2 3 4 5 6 7 8 9 10 11 12 | 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;
|