Files
the-biergarten-app/next.config.js
Aaron William Po f21dc905fe feat: client app can now upload images for beer posts
Updated seed to incorporate cloudinary images, downgraded multer to recent LTS, update tsconfig to allow spread operator usage on FileList.
2023-05-07 21:05:21 -04:00

10 lines
191 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
domains: ['picsum.photos', 'res.cloudinary.com'],
},
};
module.exports = nextConfig;