mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-15 16:51:37 +00:00
20 lines
536 B
JavaScript
20 lines
536 B
JavaScript
import remarkFrontmatter from 'remark-frontmatter';
|
|
import composePlugins from 'next-compose-plugins';
|
|
|
|
const composedConfig = composePlugins([
|
|
/** @type {import('next').NextConfig} */
|
|
{
|
|
reactStrictMode: true,
|
|
output: 'standalone',
|
|
experimental: {
|
|
// runtime: 'nodejs',
|
|
// outputStandalone: true,
|
|
images: { allowFutureImage: true },
|
|
},
|
|
pageExtensions: ['ts', 'tsx', 'js', 'jsx', 'md', 'mdx'],
|
|
images: { domains: ['avatars.githubusercontent.com'] },
|
|
},
|
|
]);
|
|
|
|
export default composedConfig;
|