asi-calculator/next.config.mjs

22 lines
426 B
JavaScript

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