mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-05-04 04:33:10 +00:00
Added Blog Page and Housekeeping
This commit is contained in:
parent
db4bf103c3
commit
d32415232e
18 changed files with 6860 additions and 769 deletions
|
@ -1,8 +1,12 @@
|
|||
import type { NextConfig } from 'next';
|
||||
|
||||
import { withContentCollections } from '@content-collections/next';
|
||||
import createMDX from '@next/mdx';
|
||||
|
||||
const nextConfig: NextConfig = {
|
||||
experimental: {
|
||||
reactCompiler: true,
|
||||
mdxRs: true,
|
||||
},
|
||||
images: {
|
||||
remotePatterns: [
|
||||
|
@ -16,6 +20,9 @@ const nextConfig: NextConfig = {
|
|||
},
|
||||
],
|
||||
},
|
||||
pageExtensions: ['ts', 'tsx', 'js', 'jsx', 'md', 'mdx'],
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
const withMDX = createMDX({});
|
||||
|
||||
export default withContentCollections(withMDX(nextConfig));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue