Files

9 lines
146 B
TypeScript
Raw Permalink Normal View History

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
compress: true
};
export default nextConfig;