asi-calculator/next.config.mjs

19 lines
372 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 = {
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
},
eslint: {
// Using Biome instead of ESLint,
// see https://github.com/vercel/next.js/discussions/59347
ignoreDuringBuilds: true
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