AniX/frontend/next.config.mjs

22 lines
394 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
reactStrictMode: false,
images: {
remotePatterns: [
{
protocol: "https",
hostname: "anixstatic.com",
},
{
protocol: "https",
hostname: "i.imgur.com",
},
],
},
env: {
API_URL: process.env.API_URL,
},
};
export default nextConfig;