asi-calculator/next.config.mjs

22 lines
373 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-30 21:56:36 +01:00
},
2024-04-01 04:25:28 +02:00
webpack: (config) => {
2024-03-30 21:56:36 +01:00
config.module.rules.push({
test: /\.md$/,
type: 'asset/source'
})
return config
2024-03-30 02:03:43 +01:00
}
}
2024-03-29 12:36:05 +01:00
2024-03-30 02:03:43 +01:00
export default nextConfig