12 lines
269 B
TypeScript
12 lines
269 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
allowedDevOrigins: ['192.168.18.93', 'localhost', '127.0.0.1', 'tpv-mv.rikrdo.com'],
|
|
turbopack: {
|
|
root: __dirname,
|
|
},
|
|
outputFileTracingRoot: __dirname,
|
|
};
|
|
|
|
export default nextConfig;
|