8 lines
186 B
JavaScript
8 lines
186 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
/* config options here */
|
|
allowedDevOrigins: ['192.168.1.122', 'invent.salesfam.cloud'],
|
|
};
|
|
|
|
export default nextConfig;
|