mirror of
https://github.com/emmabostian/developer-portfolios.git
synced 2025-04-16 11:18:00 +00:00
10 lines
185 B
JavaScript
10 lines
185 B
JavaScript
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
images: {
|
||
|
domains: ['picsum.photos'],
|
||
|
},
|
||
|
reactStrictMode: true,
|
||
|
swcMinify: true,
|
||
|
};
|
||
|
|
||
|
export default nextConfig;
|