server-dash/next.config.ts

8 lines
197 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
allowedDevOrigins: ['dashboard.jackmechem.dev', 'localhost'],
output: 'standalone',
};
export default nextConfig;