8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
allowedDevOrigins: ['dashboard.jackmechem.dev'],
|
|
output: 'standalone',
|
|
};
|
|
|
|
export default nextConfig;
|