Files
ballistic-builder/next.config.ts
2025-02-01 23:47:45 -05:00

43 lines
866 B
TypeScript

import type { NextConfig } from "next";
module.exports = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'www.brownells.com',
port: '',
pathname: '/**',
search: '',
},
{
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: '/**',
}
],
}
};