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