mirror of
https://github.com/Techtonic-Fault/homepage.git
synced 2026-01-23 05:26:30 +00:00
Initial commit
This commit is contained in:
22
next.config.ts
Normal file
22
next.config.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
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))
|
||||
Reference in New Issue
Block a user