mirror of
https://github.com/vercel/flags.git
synced 2026-09-19 03:49:23 +08:00
18 lines
375 B
TypeScript
18 lines
375 B
TypeScript
import { withVercelToolbar } from '@vercel/toolbar/plugins/next';
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https' as const,
|
|
hostname: 'assets.vercel.com',
|
|
port: '',
|
|
pathname: '/image/upload/**',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default withVercelToolbar()(nextConfig);
|