mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
36 lines
706 B
TypeScript
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: '/**',
|
|
}
|
|
],
|
|
}
|
|
};
|
|
|