Files
ballistic-builder/next.config.ts

27 lines
511 B
TypeScript
Raw Normal View History

2024-11-14 12:45:58 -05:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
2024-12-11 14:29:02 -05:00
2024-11-26 00:43:58 -05:00
/* module.exports = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'images.unsplash.com',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'tailwindui.com',
port: '',
pathname: '/plus/img/logos/**',
}
],
},
},*/
2024-11-14 12:45:58 -05:00
};
export default nextConfig;