20 lines
329 B
TypeScript
20 lines
329 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
output: "standalone",
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "avatar.vercel.sh",
|
|
},
|
|
],
|
|
},
|
|
env: {
|
|
NEXT_PUBLIC_BACKEND_PORT: process.env.BACKEND_PORT,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|