10 lines
192 B
TypeScript
10 lines
192 B
TypeScript
// next.config.js
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
allowedDevOrigins: ['http://192.168.219.114:3000'],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|