Files
mercadodevida/project/apps/pos/next.config.ts
2026-08-22 18:25:21 +02:00

12 lines
235 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
allowedDevOrigins: ['192.168.18.93', 'localhost'],
turbopack: {
root: __dirname,
},
outputFileTracingRoot: __dirname,
};
export default nextConfig;