asi-calculator/next.config.mjs
Matthias Kretschmann 51143f5980
migrate to biome (#28)
* migrate to biome

* get biome config from @kremalicious/config
2024-07-26 13:16:59 +01:00

19 lines
372 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
webpack: (config) => {
config.module.rules.push({
test: /\.md$/,
type: 'asset/source'
})
return config
},
eslint: {
// Using Biome instead of ESLint,
// see https://github.com/vercel/next.js/discussions/59347
ignoreDuringBuilds: true
}
}
export default nextConfig