13 lines
198 B
TypeScript
13 lines
198 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
module.exports = {
|
|
allowedDevOrigins: ['192.168.1.254'],
|
|
}
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
|
|
};
|
|
|
|
export default nextConfig;
|