2023-12-23 14:54:38 -06:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
|
|
|
reactStrictMode: true,
|
2023-12-23 20:33:25 -06:00
|
|
|
images: {
|
|
|
|
domains: ['fakestoreapi.com'],
|
|
|
|
},
|
2023-12-23 14:54:38 -06:00
|
|
|
}
|
|
|
|
|
2023-12-23 20:33:25 -06:00
|
|
|
module.exports = nextConfig;
|