mirror of
https://github.com/kyantech/Palmr.git
synced 2025-10-23 06:11:58 +00:00
To streamline the build process and avoid unnecessary interruptions, eslint and typescript checks are now ignored during builds
30 lines
492 B
JavaScript
30 lines
492 B
JavaScript
import { createMDX } from 'fumadocs-mdx/next';
|
|
|
|
const withMDX = createMDX();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
reactStrictMode: true,
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
images: {
|
|
qualities: [100],
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**'
|
|
},
|
|
{
|
|
protocol: 'http',
|
|
hostname: '**'
|
|
}
|
|
]
|
|
}
|
|
};
|
|
|
|
export default withMDX(config);
|