rswag-online/frontend/next.config.mjs

19 lines
315 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'rswag.online',
},
{
protocol: 'http',
hostname: 'localhost',
},
],
},
};
export default nextConfig;