blog/frontend/next.config.ts
SquidSpirit c2a26cac79
All checks were successful
Frontend CI / build (push) Successful in 1m46s
feat: ui implementation
2025-03-11 23:57:46 +08:00

23 lines
386 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,
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "*",
},
],
},
};
export default nextConfig;