summaryrefslogtreecommitdiff
path: root/next.config.ts
blob: 225e49520462b8b4b15841fc6752d5c72ff4ed4a (plain) (blame)
1
2
3
4
5
6
7
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  output: 'standalone',
};

export default nextConfig;