asi-calculator/next.config.mjs

15 lines
239 B
JavaScript
Raw Normal View History

2024-03-29 12:36:05 +01:00
/** @type {import('next').NextConfig} */
2024-03-30 02:03:43 +01:00
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'tokens.1inch.io',
pathname: '/**'
}
]
}
}
2024-03-29 12:36:05 +01:00
2024-03-30 02:03:43 +01:00
export default nextConfig