import { fileURLToPath } from 'node:url'; import { dirname } from 'node:path'; const __dirname = dirname(fileURLToPath(import.meta.url)); /** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', outputFileTracingRoot: __dirname, images: { unoptimized: true, }, trailingSlash: true, reactStrictMode: true, allowedDevOrigins: ['127.0.0.1', 'localhost', '10.255.254.66'], }; export default nextConfig;