Files
moteva/frontend/next.config.ts
T

10 lines
183 B
TypeScript
Raw Normal View History

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