8 lines
163 B
JavaScript
8 lines
163 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
/* config options here */
|
|
allowedDevOrigins: ['*.ngrok-free.dev']
|
|
};
|
|
|
|
export default nextConfig;
|