Files
learn-languages/next.config.ts
goddonebianu 467232457a
All checks were successful
continuous-integration/drone/push Build is passing
upgrade nextjs to version 16
2025-12-05 10:27:11 +08:00

22 lines
534 B
TypeScript

import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
const nextConfig: NextConfig = {
/* config options here */
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "avatars.githubusercontent.com",
port: "",
pathname: "/u/**",
},
],
},
reactCompiler: true
// allowedDevOrigins: ["192.168.3.65", "192.168.3.66"],
};
const withNextIntl = createNextIntlPlugin();
export default withNextIntl(nextConfig);