Files
fly-personal-site/next.config.ts
T
wxf b2e9924ead feat: 优化 /life 页面样式和图片显示
- 优化 /life 列表页视觉设计,增加主题标签、背景装饰、卡片动效
- 修复列表页精选文章图片显示
- 优化文章详情页图片画廊,支持切换和计数显示
- 保持整体风格一致性(米白背景 + 深灰文字 + 绿色强调)
2026-06-24 13:45:40 +08:00

11 lines
165 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "export",
images: {
unoptimized: true,
},
};
export default nextConfig;