- 优化 /life 列表页视觉设计,增加主题标签、背景装饰、卡片动效 - 修复列表页精选文章图片显示 - 优化文章详情页图片画廊,支持切换和计数显示 - 保持整体风格一致性(米白背景 + 深灰文字 + 绿色强调)
11 lines
165 B
TypeScript
11 lines
165 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "export",
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|