build: 更新Next.js配置以支持静态导出并添加新依赖
更新next.config.ts文件以支持静态导出功能,并添加了多个新的依赖项到package.json中,包括UI组件库和动画库。同时生成了构建相关的文件和配置。
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"/(marketing)/about/page": "/about",
|
||||
"/(marketing)/contact/page": "/contact",
|
||||
"/(marketing)/news/[slug]/page": "/news/[slug]",
|
||||
"/(marketing)/news/page": "/news",
|
||||
"/(marketing)/page": "/",
|
||||
"/(marketing)/products/page": "/products",
|
||||
"/(marketing)/services/page": "/services",
|
||||
"/_global-error/page": "/_global-error",
|
||||
"/_not-found/page": "/_not-found",
|
||||
"/favicon.ico/route": "/favicon.ico"
|
||||
}
|
||||
Reference in New Issue
Block a user