server-dash/next.config.ts
2026-03-25 22:23:18 -07:00

8 lines
184 B
TypeScript

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