9 lines
146 B
TypeScript
9 lines
146 B
TypeScript
|
|
import type { NextConfig } from "next";
|
||
|
|
|
||
|
|
const nextConfig: NextConfig = {
|
||
|
|
output: "standalone",
|
||
|
|
compress: true
|
||
|
|
};
|
||
|
|
|
||
|
|
export default nextConfig;
|