hamburger/next.config.ts

8 lines
128 B
TypeScript
Raw Permalink Normal View History

2024-12-21 21:35:42 +01:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
2024-12-22 01:54:37 +01:00
output: 'standalone'
2024-12-21 21:35:42 +01:00
};
export default nextConfig;