mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +00:00
22 lines
394 B
JavaScript
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;
|