9 lines
196 B
TypeScript
9 lines
196 B
TypeScript
// next.config.ts
|
|
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
allowedDevOrigins: ['https://geraete.local', 'http://localhost:3000'],
|
|
};
|
|
|
|
export default nextConfig;
|