mirror of
https://github.com/Techtonic-Fault/homepage.git
synced 2026-01-23 05:26:30 +00:00
22 lines
498 B
TypeScript
22 lines
498 B
TypeScript
|
|
import createMDX from '@next/mdx';
|
||
|
|
import { withContentCollections } from "@content-collections/next";
|
||
|
|
|
||
|
|
/** @type {import('next').NextConfig} */
|
||
|
|
const nextConfig = {
|
||
|
|
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'],
|
||
|
|
eslint: {
|
||
|
|
ignoreDuringBuilds: true,
|
||
|
|
},
|
||
|
|
typescript: {
|
||
|
|
ignoreBuildErrors: true,
|
||
|
|
},
|
||
|
|
images: {
|
||
|
|
unoptimized: true,
|
||
|
|
},
|
||
|
|
}
|
||
|
|
|
||
|
|
const withMDX = createMDX({
|
||
|
|
// Add markdown plugins here, as desired
|
||
|
|
})
|
||
|
|
|
||
|
|
export default withContentCollections(withMDX(nextConfig))
|