mirror of
https://github.com/mengjian-github/openclaw101.git
synced 2026-08-28 23:27:29 +08:00
bc54470416
- 收录 35+ 篇教程资源(阿里云/腾讯云/DigitalOcean/B站/Codecademy/IBM 等) - 独立 /resources 资源聚合页(搜索/筛选/分类) - 首页资源精选区 + 7天学习路径 + 技能推荐 - 数据驱动架构 src/data/resources.ts - 完整贡献指南 - 中英双语资源 8 大分类
19 lines
355 B
JavaScript
19 lines
355 B
JavaScript
const withMDX = require('@next/mdx')({
|
|
extension: /\.mdx?$/,
|
|
options: {
|
|
remarkPlugins: [],
|
|
rehypePlugins: [],
|
|
},
|
|
});
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'export',
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'],
|
|
};
|
|
|
|
module.exports = withMDX(nextConfig);
|