13 lines
271 B
JavaScript
13 lines
271 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
trailingSlash: true,
|
|
reactStrictMode: true,
|
|
allowedDevOrigins: ['127.0.0.1', 'localhost', '10.255.254.66'],
|
|
};
|
|
|
|
export default nextConfig;
|