Files
the-biergarten-app/Website/next.config.js

16 lines
444 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
remotePatterns: [
{ hostname: 'picsum.photos', protocol: 'https', pathname: '**' },
{ hostname: 'res.cloudinary.com', protocol: 'https', pathname: '**' },
],
},
};
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
});
module.exports = withBundleAnalyzer(nextConfig);