blog/frontend/next.config.ts
SquidSpirit bd648d59b4
All checks were successful
Frontend CI / build (push) Successful in 3m11s
BLOG-9 feat: docker file for building image
2025-01-24 17:57:17 +08:00

14 lines
272 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// Avoid from rendering twice in development mode
reactStrictMode: false,
output: "standalone",
env: {
APP_VERSION: process.env.npm_package_version,
},
};
export default nextConfig;