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