mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
16 lines
444 B
JavaScript
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);
|