mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-22 09:23:16 +01:00
22 lines
373 B
JavaScript
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
|