Files
ballistic-builder/next.config.ts

43 lines
866 B
TypeScript
Raw Normal View History

2024-11-14 12:45:58 -05:00
import type { NextConfig } from "next";
2024-12-14 00:43:45 -05:00
module.exports = {
2024-11-26 00:43:58 -05:00
images: {
remotePatterns: [
2025-02-01 23:47:45 -05:00
{
protocol: 'https',
hostname: 'www.brownells.com',
port: '',
pathname: '/**',
search: '',
},
2024-12-14 00:43:45 -05:00
{
protocol: 'https',
hostname: 'assets.example.com',
port: '',
pathname: '/**',
search: '',
},
2024-11-26 00:43:58 -05:00
{
protocol: 'https',
hostname: 'images.unsplash.com',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'tailwindui.com',
port: '',
pathname: '/plus/img/logos/**',
2024-12-14 00:43:45 -05:00
},
{
protocol: 'http',
hostname: 'i1.avlws.com',
port: '',
pathname: '/**',
2024-11-26 00:43:58 -05:00
}
],
2024-12-14 00:43:45 -05:00
}
};
2024-11-14 12:45:58 -05:00