Files
the-biergarten-app/next.config.js
2023-01-23 20:13:25 -05:00

10 lines
169 B
JavaScript

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