w-lab-app/next.config.ts
gofnnp fc01784acb main
add profile path & auth
2025-06-19 20:35:00 +04:00

21 lines
462 B
TypeScript

import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
const nextConfig: NextConfig = {
env: {
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL,
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "aura-node.s3.eu-west-2.amazonaws.com",
pathname: "/**",
},
],
},
};
const withNextIntl = createNextIntlPlugin();
export default withNextIntl(nextConfig);