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