quest-vorteq/next.config.ts

23 lines
423 B
TypeScript
Raw Normal View History

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
output: 'standalone',
reactStrictMode: true,
poweredByHeader: false,
compress: true,
allowedDevOrigins: ['https://dev.quest.vorteq.local'],
experimental: {
serverActions: {
bodySizeLimit: '10mb',
},
},
// Logging configuration
logging: {
fetches: {
fullUrl: true,
},
},
};
export default nextConfig;