20 lines
353 B
JavaScript
20 lines
353 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
output: "standalone",
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "images.unsplash.com"
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "plus.unsplash.com"
|
|
}
|
|
]
|
|
}
|
|
};
|
|
|
|
module.exports = nextConfig;
|