2026-07-07 23:15:37 +08:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
|
|
|
|
output: "standalone",
|
2026-07-18 00:23:19 +08:00
|
|
|
compress: true,
|
|
|
|
|
serverExternalPackages: ["paper"]
|
2026-07-07 23:15:37 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|