mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
15 lines
268 B
JavaScript
15 lines
268 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
module.exports = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "assets.vercel.com",
|
|
port: "",
|
|
pathname: "/image/upload/**",
|
|
search: "",
|
|
},
|
|
],
|
|
},
|
|
};
|