Files
ballistic-builder/next.config.ts
2024-12-14 00:43:45 -05:00

36 lines
706 B
TypeScript

import type { NextConfig } from "next";
module.exports = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'assets.example.com',
port: '',
pathname: '/**',
search: '',
},
{
protocol: 'https',
hostname: 'images.unsplash.com',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'tailwindui.com',
port: '',
pathname: '/plus/img/logos/**',
},
{
protocol: 'http',
hostname: 'i1.avlws.com',
port: '',
pathname: '/**',
}
],
}
};