12 lines
236 B
TypeScript
12 lines
236 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
allowedDevOrigins: ['192.168.3.3'],
|
|
compress: true,
|
|
output: 'standalone',
|
|
poweredByHeader: false,
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
export default nextConfig;
|