14 lines
217 B
JavaScript
14 lines
217 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "img.020417.xyz"
|
|
}
|
|
]
|
|
}
|
|
};
|
|
|
|
module.exports = nextConfig;
|