mycopunk-swag-store/frontend/next.config.mjs

19 lines
320 B
JavaScript

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