asi-calculator/next.config.mjs
2024-04-01 03:25:28 +01:00

22 lines
373 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'tokens.1inch.io',
pathname: '/**'
}
]
},
webpack: (config) => {
config.module.rules.push({
test: /\.md$/,
type: 'asset/source'
})
return config
}
}
export default nextConfig