mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
10 lines
169 B
JavaScript
10 lines
169 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
images: {
|
|
domains: ['picsum.photos'],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|