build: 更新Next.js配置以支持静态导出并添加新依赖
更新next.config.ts文件以支持静态导出功能,并添加了多个新的依赖项到package.json中,包括UI组件库和动画库。同时生成了构建相关的文件和配置。
This commit is contained in:
+224
-10
@@ -1,6 +1,6 @@
|
|||||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||||
|
|
||||||
# dependencies
|
# Dependencies
|
||||||
/node_modules
|
/node_modules
|
||||||
/.pnp
|
/.pnp
|
||||||
.pnp.*
|
.pnp.*
|
||||||
@@ -9,33 +9,247 @@
|
|||||||
!.yarn/plugins
|
!.yarn/plugins
|
||||||
!.yarn/releases
|
!.yarn/releases
|
||||||
!.yarn/versions
|
!.yarn/versions
|
||||||
|
.pnpm-store/
|
||||||
|
|
||||||
# testing
|
# Testing
|
||||||
/coverage
|
/coverage
|
||||||
|
/.nyc_output
|
||||||
|
|
||||||
# next.js
|
# Next.js
|
||||||
/.next/
|
/.next/
|
||||||
/out/
|
/out/
|
||||||
|
/dist/
|
||||||
|
!.next/
|
||||||
|
!dist/
|
||||||
|
|
||||||
# production
|
# Production
|
||||||
/build
|
/build
|
||||||
|
/.cache
|
||||||
|
|
||||||
# misc
|
# Misc
|
||||||
.DS_Store
|
.DS_Store
|
||||||
*.pem
|
*.pem
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
# debug
|
# Debug
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
.pnpm-debug.log*
|
.pnpm-debug.log*
|
||||||
|
*-debug.log
|
||||||
|
*-error.log
|
||||||
|
|
||||||
# env files (can opt-in for committing if needed)
|
# Local env files
|
||||||
.env*
|
.env
|
||||||
|
.env.local
|
||||||
|
.env.development.local
|
||||||
|
.env.test.local
|
||||||
|
.env.production.local
|
||||||
|
.env.*.local
|
||||||
|
|
||||||
# vercel
|
# Vercel
|
||||||
.vercel
|
.vercel
|
||||||
|
|
||||||
# typescript
|
# TypeScript
|
||||||
*.tsbuildinfo
|
*.tsbuildinfo
|
||||||
next-env.d.ts
|
next-env.d.ts
|
||||||
|
|
||||||
|
# IDE
|
||||||
|
.idea/
|
||||||
|
.vscode/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
|
.project
|
||||||
|
.classpath
|
||||||
|
.settings/
|
||||||
|
*.sublime-workspace
|
||||||
|
*.sublime-project
|
||||||
|
|
||||||
|
# OS
|
||||||
|
.DS_Store
|
||||||
|
.DS_Store?
|
||||||
|
._*
|
||||||
|
.Spotlight-V100
|
||||||
|
.Trashes
|
||||||
|
ehthumbs.db
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Logs
|
||||||
|
logs
|
||||||
|
*.log
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
lerna-debug.log*
|
||||||
|
|
||||||
|
# Runtime data
|
||||||
|
pids
|
||||||
|
*.pid
|
||||||
|
*.seed
|
||||||
|
*.pid.lock
|
||||||
|
|
||||||
|
# Coverage directory used by tools like istanbul
|
||||||
|
coverage
|
||||||
|
|
||||||
|
# nyc test coverage
|
||||||
|
.nyc_output
|
||||||
|
|
||||||
|
# Dependency directories
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# Optional eslint cache
|
||||||
|
.eslintcache
|
||||||
|
|
||||||
|
# Optional REPL history
|
||||||
|
.node_repl_history
|
||||||
|
|
||||||
|
# Output of 'npm pack'
|
||||||
|
*.tgz
|
||||||
|
|
||||||
|
# dotenv environment variable files
|
||||||
|
.env
|
||||||
|
.env.development.local
|
||||||
|
.env.test.local
|
||||||
|
.env.production.local
|
||||||
|
.env.production
|
||||||
|
|
||||||
|
# parcel-bundler cache (https://parceljs.org/)
|
||||||
|
.cache
|
||||||
|
.parcel-cache
|
||||||
|
|
||||||
|
# Storybook build outputs
|
||||||
|
storybook-static
|
||||||
|
|
||||||
|
# Turbopack
|
||||||
|
.turbo
|
||||||
|
|
||||||
|
# Vite
|
||||||
|
vite.config.ts.timestamp-*
|
||||||
|
dist-ssr
|
||||||
|
*.local
|
||||||
|
|
||||||
|
# Rollup
|
||||||
|
dist
|
||||||
|
dist-ssr
|
||||||
|
|
||||||
|
# PyTorch
|
||||||
|
*.pt
|
||||||
|
*.pth
|
||||||
|
|
||||||
|
# Machine learning models
|
||||||
|
model.onnx
|
||||||
|
*.h5
|
||||||
|
*.pb
|
||||||
|
saved_model/
|
||||||
|
|
||||||
|
# Python
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
*.so
|
||||||
|
.Python
|
||||||
|
build/
|
||||||
|
develop-eggs/
|
||||||
|
dist/
|
||||||
|
downloads/
|
||||||
|
eggs/
|
||||||
|
.eggs/
|
||||||
|
lib/
|
||||||
|
lib64/
|
||||||
|
parts/
|
||||||
|
sdist/
|
||||||
|
var/
|
||||||
|
wheels/
|
||||||
|
*.egg-info/
|
||||||
|
.installed.cfg
|
||||||
|
*.egg
|
||||||
|
|
||||||
|
# Jupyter Notebook
|
||||||
|
.ipynb_checkpoints
|
||||||
|
|
||||||
|
# IPython
|
||||||
|
profile_default/
|
||||||
|
ipython_config.py
|
||||||
|
|
||||||
|
# pyenv
|
||||||
|
.python-version
|
||||||
|
|
||||||
|
# pipenv
|
||||||
|
Pipfile.lock
|
||||||
|
|
||||||
|
# poetry
|
||||||
|
.poetry/
|
||||||
|
|
||||||
|
# pdm
|
||||||
|
.pdm.toml
|
||||||
|
|
||||||
|
# PEP 582
|
||||||
|
__pypackages__/
|
||||||
|
|
||||||
|
# Celery stuff
|
||||||
|
celerybeat-schedule
|
||||||
|
celerybeat.pid
|
||||||
|
|
||||||
|
# SageMath parsed files
|
||||||
|
*.sage.py
|
||||||
|
|
||||||
|
# Environments
|
||||||
|
.venv
|
||||||
|
env/
|
||||||
|
venv/
|
||||||
|
ENV/
|
||||||
|
env.bak/
|
||||||
|
venv.bak/
|
||||||
|
|
||||||
|
# Spyder project settings
|
||||||
|
.spyderproject
|
||||||
|
.spyproject
|
||||||
|
|
||||||
|
# Rope project settings
|
||||||
|
.ropeproject
|
||||||
|
|
||||||
|
# mkdocs documentation
|
||||||
|
/site
|
||||||
|
|
||||||
|
# mypy
|
||||||
|
.mypy_cache/
|
||||||
|
.dmypy.json
|
||||||
|
dmypy.json
|
||||||
|
|
||||||
|
# Pyre type checker
|
||||||
|
.pyre/
|
||||||
|
|
||||||
|
# IDEs
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.suo
|
||||||
|
*.ntvs*
|
||||||
|
*.njsproj
|
||||||
|
*.sln
|
||||||
|
*.sw?
|
||||||
|
|
||||||
|
# macOS
|
||||||
|
.DS_Store
|
||||||
|
.AppleDouble
|
||||||
|
.LSOverride
|
||||||
|
|
||||||
|
# Thumbnails
|
||||||
|
._*
|
||||||
|
|
||||||
|
# Files that might appear in the root of a volume
|
||||||
|
.DocumentRevisions-V100
|
||||||
|
.fseventsd
|
||||||
|
.Spotlight-V100
|
||||||
|
.TemporaryItems
|
||||||
|
.Trashes
|
||||||
|
.VolumeIcon.icns
|
||||||
|
.com.apple.timemachine.donotpresent
|
||||||
|
|
||||||
|
# Optional additional ignore items
|
||||||
|
*.bak
|
||||||
|
*.backup
|
||||||
|
*.orig
|
||||||
|
*.rej
|
||||||
|
*.tmp
|
||||||
|
*~
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
OdiYp943cvOpOmTEuabW6
|
||||||
@@ -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"
|
||||||
|
}
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"pages": {
|
||||||
|
"/_app": []
|
||||||
|
},
|
||||||
|
"devFiles": [],
|
||||||
|
"polyfillFiles": [
|
||||||
|
"static/chunks/a6dad97d9634a72d.js"
|
||||||
|
],
|
||||||
|
"lowPriorityFiles": [
|
||||||
|
"static/OdiYp943cvOpOmTEuabW6/_ssgManifest.js",
|
||||||
|
"static/OdiYp943cvOpOmTEuabW6/_buildManifest.js"
|
||||||
|
],
|
||||||
|
"rootMainFiles": [
|
||||||
|
"static/chunks/2855866a65c6f3f9.js",
|
||||||
|
"static/chunks/7c421428f53947e0.js",
|
||||||
|
"static/chunks/35bc7b7b98f305b3.js",
|
||||||
|
"static/chunks/6198008163122955.js",
|
||||||
|
"static/chunks/turbopack-7e8c1703cae88b4a.js"
|
||||||
|
]
|
||||||
|
}
|
||||||
Vendored
+1
@@ -0,0 +1 @@
|
|||||||
|
{"previewModeId":"c6a36542ad7ebfc7c223a7fbc9691a11","previewModeSigningKey":"ebb8acf12dc342c3580b933444d4e364e7e987e3ac1e6becd4056e3f5dc4bf45","previewModeEncryptionKey":"78ce366482304da0cb9b03a22a2a6818e46790ee12a50113983c8996c8734705","expireAt":1771205691384}
|
||||||
Vendored
+1
@@ -0,0 +1 @@
|
|||||||
|
{"encryption.key":"0LIbn7BQ9YIaIlp3lpyShdgb90QnHPW1EL8nFizevso=","encryption.expire_at":1771205691376}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"buildStage": "static-generation",
|
||||||
|
"buildOptions": {
|
||||||
|
"useBuildWorker": "true"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"name":"Next.js","version":"16.1.6"}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"outDirectory": "/Users/zhangxiang/Codes/Gitee/home-page/ruixin-website-react/dist",
|
||||||
|
"success": true
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"hasExportPathMap": false,
|
||||||
|
"exportTrailingSlash": false,
|
||||||
|
"isNextImageImported": false
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"pages": {
|
||||||
|
"/_app": []
|
||||||
|
},
|
||||||
|
"devFiles": [],
|
||||||
|
"polyfillFiles": [],
|
||||||
|
"lowPriorityFiles": [
|
||||||
|
"static/OdiYp943cvOpOmTEuabW6/_ssgManifest.js",
|
||||||
|
"static/OdiYp943cvOpOmTEuabW6/_buildManifest.js"
|
||||||
|
],
|
||||||
|
"rootMainFiles": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"images": {
|
||||||
|
"deviceSizes": [
|
||||||
|
640,
|
||||||
|
750,
|
||||||
|
828,
|
||||||
|
1080,
|
||||||
|
1200,
|
||||||
|
1920,
|
||||||
|
2048,
|
||||||
|
3840
|
||||||
|
],
|
||||||
|
"imageSizes": [
|
||||||
|
32,
|
||||||
|
48,
|
||||||
|
64,
|
||||||
|
96,
|
||||||
|
128,
|
||||||
|
256,
|
||||||
|
384
|
||||||
|
],
|
||||||
|
"path": "/_next/image",
|
||||||
|
"loader": "default",
|
||||||
|
"loaderFile": "",
|
||||||
|
"domains": [],
|
||||||
|
"disableStaticImages": false,
|
||||||
|
"minimumCacheTTL": 14400,
|
||||||
|
"formats": [
|
||||||
|
"image/webp"
|
||||||
|
],
|
||||||
|
"maximumRedirects": 3,
|
||||||
|
"maximumResponseBody": 50000000,
|
||||||
|
"dangerouslyAllowLocalIP": false,
|
||||||
|
"dangerouslyAllowSVG": false,
|
||||||
|
"contentSecurityPolicy": "script-src 'none'; frame-src 'none'; sandbox;",
|
||||||
|
"contentDispositionType": "attachment",
|
||||||
|
"localPatterns": [
|
||||||
|
{
|
||||||
|
"pathname": "^(?:(?!(?:^|\\/)\\.{1,2}(?:\\/|$))(?:(?:(?!(?:^|\\/)\\.{1,2}(?:\\/|$)).)*?)\\/?)$",
|
||||||
|
"search": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"remotePatterns": [],
|
||||||
|
"qualities": [
|
||||||
|
75
|
||||||
|
],
|
||||||
|
"unoptimized": true,
|
||||||
|
"sizes": [
|
||||||
|
640,
|
||||||
|
750,
|
||||||
|
828,
|
||||||
|
1080,
|
||||||
|
1200,
|
||||||
|
1920,
|
||||||
|
2048,
|
||||||
|
3840,
|
||||||
|
32,
|
||||||
|
48,
|
||||||
|
64,
|
||||||
|
96,
|
||||||
|
128,
|
||||||
|
256,
|
||||||
|
384
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"type": "commonjs"}
|
||||||
@@ -0,0 +1,406 @@
|
|||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"routes": {
|
||||||
|
"/_global-error": {
|
||||||
|
"experimentalBypassFor": [
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "next-action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "content-type",
|
||||||
|
"value": "multipart/form-data;.*"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"initialRevalidateSeconds": false,
|
||||||
|
"srcRoute": "/_global-error",
|
||||||
|
"dataRoute": "/_global-error.rsc",
|
||||||
|
"allowHeader": [
|
||||||
|
"host",
|
||||||
|
"x-matched-path",
|
||||||
|
"x-prerender-revalidate",
|
||||||
|
"x-prerender-revalidate-if-generated",
|
||||||
|
"x-next-revalidated-tags",
|
||||||
|
"x-next-revalidate-tag-token"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"/_not-found": {
|
||||||
|
"initialStatus": 404,
|
||||||
|
"experimentalBypassFor": [
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "next-action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "content-type",
|
||||||
|
"value": "multipart/form-data;.*"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"initialRevalidateSeconds": false,
|
||||||
|
"srcRoute": "/_not-found",
|
||||||
|
"dataRoute": "/_not-found.rsc",
|
||||||
|
"allowHeader": [
|
||||||
|
"host",
|
||||||
|
"x-matched-path",
|
||||||
|
"x-prerender-revalidate",
|
||||||
|
"x-prerender-revalidate-if-generated",
|
||||||
|
"x-next-revalidated-tags",
|
||||||
|
"x-next-revalidate-tag-token"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"/about": {
|
||||||
|
"experimentalBypassFor": [
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "next-action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "content-type",
|
||||||
|
"value": "multipart/form-data;.*"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"initialRevalidateSeconds": false,
|
||||||
|
"srcRoute": "/about",
|
||||||
|
"dataRoute": "/about.rsc",
|
||||||
|
"allowHeader": [
|
||||||
|
"host",
|
||||||
|
"x-matched-path",
|
||||||
|
"x-prerender-revalidate",
|
||||||
|
"x-prerender-revalidate-if-generated",
|
||||||
|
"x-next-revalidated-tags",
|
||||||
|
"x-next-revalidate-tag-token"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"/contact": {
|
||||||
|
"experimentalBypassFor": [
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "next-action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "content-type",
|
||||||
|
"value": "multipart/form-data;.*"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"initialRevalidateSeconds": false,
|
||||||
|
"srcRoute": "/contact",
|
||||||
|
"dataRoute": "/contact.rsc",
|
||||||
|
"allowHeader": [
|
||||||
|
"host",
|
||||||
|
"x-matched-path",
|
||||||
|
"x-prerender-revalidate",
|
||||||
|
"x-prerender-revalidate-if-generated",
|
||||||
|
"x-next-revalidated-tags",
|
||||||
|
"x-next-revalidate-tag-token"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"/news/1": {
|
||||||
|
"experimentalBypassFor": [
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "next-action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "content-type",
|
||||||
|
"value": "multipart/form-data;.*"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"initialRevalidateSeconds": false,
|
||||||
|
"srcRoute": "/news/[slug]",
|
||||||
|
"dataRoute": "/news/1.rsc",
|
||||||
|
"allowHeader": [
|
||||||
|
"host",
|
||||||
|
"x-matched-path",
|
||||||
|
"x-prerender-revalidate",
|
||||||
|
"x-prerender-revalidate-if-generated",
|
||||||
|
"x-next-revalidated-tags",
|
||||||
|
"x-next-revalidate-tag-token"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"/news/2": {
|
||||||
|
"experimentalBypassFor": [
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "next-action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "content-type",
|
||||||
|
"value": "multipart/form-data;.*"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"initialRevalidateSeconds": false,
|
||||||
|
"srcRoute": "/news/[slug]",
|
||||||
|
"dataRoute": "/news/2.rsc",
|
||||||
|
"allowHeader": [
|
||||||
|
"host",
|
||||||
|
"x-matched-path",
|
||||||
|
"x-prerender-revalidate",
|
||||||
|
"x-prerender-revalidate-if-generated",
|
||||||
|
"x-next-revalidated-tags",
|
||||||
|
"x-next-revalidate-tag-token"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"/news/3": {
|
||||||
|
"experimentalBypassFor": [
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "next-action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "content-type",
|
||||||
|
"value": "multipart/form-data;.*"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"initialRevalidateSeconds": false,
|
||||||
|
"srcRoute": "/news/[slug]",
|
||||||
|
"dataRoute": "/news/3.rsc",
|
||||||
|
"allowHeader": [
|
||||||
|
"host",
|
||||||
|
"x-matched-path",
|
||||||
|
"x-prerender-revalidate",
|
||||||
|
"x-prerender-revalidate-if-generated",
|
||||||
|
"x-next-revalidated-tags",
|
||||||
|
"x-next-revalidate-tag-token"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"/news/4": {
|
||||||
|
"experimentalBypassFor": [
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "next-action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "content-type",
|
||||||
|
"value": "multipart/form-data;.*"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"initialRevalidateSeconds": false,
|
||||||
|
"srcRoute": "/news/[slug]",
|
||||||
|
"dataRoute": "/news/4.rsc",
|
||||||
|
"allowHeader": [
|
||||||
|
"host",
|
||||||
|
"x-matched-path",
|
||||||
|
"x-prerender-revalidate",
|
||||||
|
"x-prerender-revalidate-if-generated",
|
||||||
|
"x-next-revalidated-tags",
|
||||||
|
"x-next-revalidate-tag-token"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"/news/5": {
|
||||||
|
"experimentalBypassFor": [
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "next-action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "content-type",
|
||||||
|
"value": "multipart/form-data;.*"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"initialRevalidateSeconds": false,
|
||||||
|
"srcRoute": "/news/[slug]",
|
||||||
|
"dataRoute": "/news/5.rsc",
|
||||||
|
"allowHeader": [
|
||||||
|
"host",
|
||||||
|
"x-matched-path",
|
||||||
|
"x-prerender-revalidate",
|
||||||
|
"x-prerender-revalidate-if-generated",
|
||||||
|
"x-next-revalidated-tags",
|
||||||
|
"x-next-revalidate-tag-token"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"/news/6": {
|
||||||
|
"experimentalBypassFor": [
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "next-action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "content-type",
|
||||||
|
"value": "multipart/form-data;.*"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"initialRevalidateSeconds": false,
|
||||||
|
"srcRoute": "/news/[slug]",
|
||||||
|
"dataRoute": "/news/6.rsc",
|
||||||
|
"allowHeader": [
|
||||||
|
"host",
|
||||||
|
"x-matched-path",
|
||||||
|
"x-prerender-revalidate",
|
||||||
|
"x-prerender-revalidate-if-generated",
|
||||||
|
"x-next-revalidated-tags",
|
||||||
|
"x-next-revalidate-tag-token"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"/news": {
|
||||||
|
"experimentalBypassFor": [
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "next-action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "content-type",
|
||||||
|
"value": "multipart/form-data;.*"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"initialRevalidateSeconds": false,
|
||||||
|
"srcRoute": "/news",
|
||||||
|
"dataRoute": "/news.rsc",
|
||||||
|
"allowHeader": [
|
||||||
|
"host",
|
||||||
|
"x-matched-path",
|
||||||
|
"x-prerender-revalidate",
|
||||||
|
"x-prerender-revalidate-if-generated",
|
||||||
|
"x-next-revalidated-tags",
|
||||||
|
"x-next-revalidate-tag-token"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"/": {
|
||||||
|
"experimentalBypassFor": [
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "next-action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "content-type",
|
||||||
|
"value": "multipart/form-data;.*"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"initialRevalidateSeconds": false,
|
||||||
|
"srcRoute": "/",
|
||||||
|
"dataRoute": "/index.rsc",
|
||||||
|
"allowHeader": [
|
||||||
|
"host",
|
||||||
|
"x-matched-path",
|
||||||
|
"x-prerender-revalidate",
|
||||||
|
"x-prerender-revalidate-if-generated",
|
||||||
|
"x-next-revalidated-tags",
|
||||||
|
"x-next-revalidate-tag-token"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"/products": {
|
||||||
|
"experimentalBypassFor": [
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "next-action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "content-type",
|
||||||
|
"value": "multipart/form-data;.*"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"initialRevalidateSeconds": false,
|
||||||
|
"srcRoute": "/products",
|
||||||
|
"dataRoute": "/products.rsc",
|
||||||
|
"allowHeader": [
|
||||||
|
"host",
|
||||||
|
"x-matched-path",
|
||||||
|
"x-prerender-revalidate",
|
||||||
|
"x-prerender-revalidate-if-generated",
|
||||||
|
"x-next-revalidated-tags",
|
||||||
|
"x-next-revalidate-tag-token"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"/services": {
|
||||||
|
"experimentalBypassFor": [
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "next-action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "content-type",
|
||||||
|
"value": "multipart/form-data;.*"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"initialRevalidateSeconds": false,
|
||||||
|
"srcRoute": "/services",
|
||||||
|
"dataRoute": "/services.rsc",
|
||||||
|
"allowHeader": [
|
||||||
|
"host",
|
||||||
|
"x-matched-path",
|
||||||
|
"x-prerender-revalidate",
|
||||||
|
"x-prerender-revalidate-if-generated",
|
||||||
|
"x-next-revalidated-tags",
|
||||||
|
"x-next-revalidate-tag-token"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"/favicon.ico": {
|
||||||
|
"initialHeaders": {
|
||||||
|
"cache-control": "public, max-age=0, must-revalidate",
|
||||||
|
"content-type": "image/x-icon",
|
||||||
|
"x-next-cache-tags": "_N_T_/layout,_N_T_/favicon.ico/layout,_N_T_/favicon.ico/route,_N_T_/favicon.ico"
|
||||||
|
},
|
||||||
|
"experimentalBypassFor": [
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "next-action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "content-type",
|
||||||
|
"value": "multipart/form-data;.*"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"initialRevalidateSeconds": false,
|
||||||
|
"srcRoute": "/favicon.ico",
|
||||||
|
"dataRoute": null,
|
||||||
|
"allowHeader": [
|
||||||
|
"host",
|
||||||
|
"x-matched-path",
|
||||||
|
"x-prerender-revalidate",
|
||||||
|
"x-prerender-revalidate-if-generated",
|
||||||
|
"x-next-revalidated-tags",
|
||||||
|
"x-next-revalidate-tag-token"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"dynamicRoutes": {
|
||||||
|
"/news/[slug]": {
|
||||||
|
"experimentalBypassFor": [
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "next-action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "header",
|
||||||
|
"key": "content-type",
|
||||||
|
"value": "multipart/form-data;.*"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"routeRegex": "^/news/([^/]+?)(?:/)?$",
|
||||||
|
"dataRoute": "/news/[slug].rsc",
|
||||||
|
"fallback": null,
|
||||||
|
"fallbackRouteParams": [],
|
||||||
|
"dataRouteRegex": "^/news/([^/]+?)\\.rsc$",
|
||||||
|
"prefetchDataRoute": null,
|
||||||
|
"allowHeader": [
|
||||||
|
"host",
|
||||||
|
"x-matched-path",
|
||||||
|
"x-prerender-revalidate",
|
||||||
|
"x-prerender-revalidate-if-generated",
|
||||||
|
"x-next-revalidated-tags",
|
||||||
|
"x-next-revalidate-tag-token"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notFoundRoutes": [],
|
||||||
|
"preview": {
|
||||||
|
"previewModeId": "c6a36542ad7ebfc7c223a7fbc9691a11",
|
||||||
|
"previewModeSigningKey": "ebb8acf12dc342c3580b933444d4e364e7e987e3ac1e6becd4056e3f5dc4bf45",
|
||||||
|
"previewModeEncryptionKey": "78ce366482304da0cb9b03a22a2a6818e46790ee12a50113983c8996c8734705"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,321 @@
|
|||||||
|
self.__SERVER_FILES_MANIFEST={
|
||||||
|
"version": 1,
|
||||||
|
"config": {
|
||||||
|
"env": {},
|
||||||
|
"webpack": null,
|
||||||
|
"typescript": {
|
||||||
|
"ignoreBuildErrors": false
|
||||||
|
},
|
||||||
|
"typedRoutes": false,
|
||||||
|
"distDir": ".next",
|
||||||
|
"cleanDistDir": true,
|
||||||
|
"assetPrefix": "",
|
||||||
|
"cacheMaxMemorySize": 52428800,
|
||||||
|
"configOrigin": "next.config.ts",
|
||||||
|
"useFileSystemPublicRoutes": true,
|
||||||
|
"generateEtags": true,
|
||||||
|
"pageExtensions": [
|
||||||
|
"tsx",
|
||||||
|
"ts",
|
||||||
|
"jsx",
|
||||||
|
"js"
|
||||||
|
],
|
||||||
|
"poweredByHeader": true,
|
||||||
|
"compress": true,
|
||||||
|
"images": {
|
||||||
|
"deviceSizes": [
|
||||||
|
640,
|
||||||
|
750,
|
||||||
|
828,
|
||||||
|
1080,
|
||||||
|
1200,
|
||||||
|
1920,
|
||||||
|
2048,
|
||||||
|
3840
|
||||||
|
],
|
||||||
|
"imageSizes": [
|
||||||
|
32,
|
||||||
|
48,
|
||||||
|
64,
|
||||||
|
96,
|
||||||
|
128,
|
||||||
|
256,
|
||||||
|
384
|
||||||
|
],
|
||||||
|
"path": "/_next/image",
|
||||||
|
"loader": "default",
|
||||||
|
"loaderFile": "",
|
||||||
|
"domains": [],
|
||||||
|
"disableStaticImages": false,
|
||||||
|
"minimumCacheTTL": 14400,
|
||||||
|
"formats": [
|
||||||
|
"image/webp"
|
||||||
|
],
|
||||||
|
"maximumRedirects": 3,
|
||||||
|
"maximumResponseBody": 50000000,
|
||||||
|
"dangerouslyAllowLocalIP": false,
|
||||||
|
"dangerouslyAllowSVG": false,
|
||||||
|
"contentSecurityPolicy": "script-src 'none'; frame-src 'none'; sandbox;",
|
||||||
|
"contentDispositionType": "attachment",
|
||||||
|
"localPatterns": [
|
||||||
|
{
|
||||||
|
"pathname": "**",
|
||||||
|
"search": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"remotePatterns": [],
|
||||||
|
"qualities": [
|
||||||
|
75
|
||||||
|
],
|
||||||
|
"unoptimized": true
|
||||||
|
},
|
||||||
|
"devIndicators": {
|
||||||
|
"position": "bottom-left"
|
||||||
|
},
|
||||||
|
"onDemandEntries": {
|
||||||
|
"maxInactiveAge": 60000,
|
||||||
|
"pagesBufferLength": 5
|
||||||
|
},
|
||||||
|
"basePath": "",
|
||||||
|
"sassOptions": {},
|
||||||
|
"trailingSlash": false,
|
||||||
|
"i18n": null,
|
||||||
|
"productionBrowserSourceMaps": false,
|
||||||
|
"excludeDefaultMomentLocales": true,
|
||||||
|
"reactProductionProfiling": false,
|
||||||
|
"reactStrictMode": null,
|
||||||
|
"reactMaxHeadersLength": 6000,
|
||||||
|
"httpAgentOptions": {
|
||||||
|
"keepAlive": true
|
||||||
|
},
|
||||||
|
"logging": {},
|
||||||
|
"compiler": {},
|
||||||
|
"expireTime": 31536000,
|
||||||
|
"staticPageGenerationTimeout": 60,
|
||||||
|
"output": "export",
|
||||||
|
"modularizeImports": {
|
||||||
|
"@mui/icons-material": {
|
||||||
|
"transform": "@mui/icons-material/{{member}}"
|
||||||
|
},
|
||||||
|
"lodash": {
|
||||||
|
"transform": "lodash/{{member}}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"outputFileTracingRoot": "/Users/zhangxiang/Codes/Gitee/home-page",
|
||||||
|
"cacheComponents": false,
|
||||||
|
"cacheLife": {
|
||||||
|
"default": {
|
||||||
|
"stale": 300,
|
||||||
|
"revalidate": 900,
|
||||||
|
"expire": 4294967294
|
||||||
|
},
|
||||||
|
"seconds": {
|
||||||
|
"stale": 30,
|
||||||
|
"revalidate": 1,
|
||||||
|
"expire": 60
|
||||||
|
},
|
||||||
|
"minutes": {
|
||||||
|
"stale": 300,
|
||||||
|
"revalidate": 60,
|
||||||
|
"expire": 3600
|
||||||
|
},
|
||||||
|
"hours": {
|
||||||
|
"stale": 300,
|
||||||
|
"revalidate": 3600,
|
||||||
|
"expire": 86400
|
||||||
|
},
|
||||||
|
"days": {
|
||||||
|
"stale": 300,
|
||||||
|
"revalidate": 86400,
|
||||||
|
"expire": 604800
|
||||||
|
},
|
||||||
|
"weeks": {
|
||||||
|
"stale": 300,
|
||||||
|
"revalidate": 604800,
|
||||||
|
"expire": 2592000
|
||||||
|
},
|
||||||
|
"max": {
|
||||||
|
"stale": 300,
|
||||||
|
"revalidate": 2592000,
|
||||||
|
"expire": 31536000
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"cacheHandlers": {},
|
||||||
|
"experimental": {
|
||||||
|
"useSkewCookie": false,
|
||||||
|
"cssChunking": true,
|
||||||
|
"multiZoneDraftMode": false,
|
||||||
|
"appNavFailHandling": false,
|
||||||
|
"prerenderEarlyExit": true,
|
||||||
|
"serverMinification": true,
|
||||||
|
"linkNoTouchStart": false,
|
||||||
|
"caseSensitiveRoutes": false,
|
||||||
|
"dynamicOnHover": false,
|
||||||
|
"preloadEntriesOnStart": true,
|
||||||
|
"clientRouterFilter": true,
|
||||||
|
"clientRouterFilterRedirects": false,
|
||||||
|
"fetchCacheKeyPrefix": "",
|
||||||
|
"proxyPrefetch": "flexible",
|
||||||
|
"optimisticClientCache": true,
|
||||||
|
"manualClientBasePath": false,
|
||||||
|
"cpus": 7,
|
||||||
|
"memoryBasedWorkersCount": false,
|
||||||
|
"imgOptConcurrency": null,
|
||||||
|
"imgOptTimeoutInSeconds": 7,
|
||||||
|
"imgOptMaxInputPixels": 268402689,
|
||||||
|
"imgOptSequentialRead": null,
|
||||||
|
"imgOptSkipMetadata": null,
|
||||||
|
"isrFlushToDisk": true,
|
||||||
|
"workerThreads": false,
|
||||||
|
"optimizeCss": false,
|
||||||
|
"nextScriptWorkers": false,
|
||||||
|
"scrollRestoration": false,
|
||||||
|
"externalDir": false,
|
||||||
|
"disableOptimizedLoading": false,
|
||||||
|
"gzipSize": true,
|
||||||
|
"craCompat": false,
|
||||||
|
"esmExternals": true,
|
||||||
|
"fullySpecified": false,
|
||||||
|
"swcTraceProfiling": false,
|
||||||
|
"forceSwcTransforms": false,
|
||||||
|
"largePageDataBytes": 128000,
|
||||||
|
"typedEnv": false,
|
||||||
|
"parallelServerCompiles": false,
|
||||||
|
"parallelServerBuildTraces": false,
|
||||||
|
"ppr": false,
|
||||||
|
"authInterrupts": false,
|
||||||
|
"webpackMemoryOptimizations": false,
|
||||||
|
"optimizeServerReact": true,
|
||||||
|
"viewTransition": false,
|
||||||
|
"removeUncaughtErrorAndRejectionListeners": false,
|
||||||
|
"validateRSCRequestHeaders": false,
|
||||||
|
"staleTimes": {
|
||||||
|
"dynamic": 0,
|
||||||
|
"static": 300
|
||||||
|
},
|
||||||
|
"reactDebugChannel": false,
|
||||||
|
"serverComponentsHmrCache": true,
|
||||||
|
"staticGenerationMaxConcurrency": 8,
|
||||||
|
"staticGenerationMinPagesPerWorker": 25,
|
||||||
|
"transitionIndicator": false,
|
||||||
|
"inlineCss": false,
|
||||||
|
"useCache": false,
|
||||||
|
"globalNotFound": false,
|
||||||
|
"browserDebugInfoInTerminal": false,
|
||||||
|
"lockDistDir": true,
|
||||||
|
"isolatedDevBuild": true,
|
||||||
|
"proxyClientMaxBodySize": 10485760,
|
||||||
|
"hideLogsAfterAbort": false,
|
||||||
|
"mcpServer": true,
|
||||||
|
"turbopackFileSystemCacheForDev": true,
|
||||||
|
"turbopackFileSystemCacheForBuild": false,
|
||||||
|
"turbopackInferModuleSideEffects": false,
|
||||||
|
"optimizePackageImports": [
|
||||||
|
"lucide-react",
|
||||||
|
"date-fns",
|
||||||
|
"lodash-es",
|
||||||
|
"ramda",
|
||||||
|
"antd",
|
||||||
|
"react-bootstrap",
|
||||||
|
"ahooks",
|
||||||
|
"@ant-design/icons",
|
||||||
|
"@headlessui/react",
|
||||||
|
"@headlessui-float/react",
|
||||||
|
"@heroicons/react/20/solid",
|
||||||
|
"@heroicons/react/24/solid",
|
||||||
|
"@heroicons/react/24/outline",
|
||||||
|
"@visx/visx",
|
||||||
|
"@tremor/react",
|
||||||
|
"rxjs",
|
||||||
|
"@mui/material",
|
||||||
|
"@mui/icons-material",
|
||||||
|
"recharts",
|
||||||
|
"react-use",
|
||||||
|
"effect",
|
||||||
|
"@effect/schema",
|
||||||
|
"@effect/platform",
|
||||||
|
"@effect/platform-node",
|
||||||
|
"@effect/platform-browser",
|
||||||
|
"@effect/platform-bun",
|
||||||
|
"@effect/sql",
|
||||||
|
"@effect/sql-mssql",
|
||||||
|
"@effect/sql-mysql2",
|
||||||
|
"@effect/sql-pg",
|
||||||
|
"@effect/sql-sqlite-node",
|
||||||
|
"@effect/sql-sqlite-bun",
|
||||||
|
"@effect/sql-sqlite-wasm",
|
||||||
|
"@effect/sql-sqlite-react-native",
|
||||||
|
"@effect/rpc",
|
||||||
|
"@effect/rpc-http",
|
||||||
|
"@effect/typeclass",
|
||||||
|
"@effect/experimental",
|
||||||
|
"@effect/opentelemetry",
|
||||||
|
"@material-ui/core",
|
||||||
|
"@material-ui/icons",
|
||||||
|
"@tabler/icons-react",
|
||||||
|
"mui-core",
|
||||||
|
"react-icons/ai",
|
||||||
|
"react-icons/bi",
|
||||||
|
"react-icons/bs",
|
||||||
|
"react-icons/cg",
|
||||||
|
"react-icons/ci",
|
||||||
|
"react-icons/di",
|
||||||
|
"react-icons/fa",
|
||||||
|
"react-icons/fa6",
|
||||||
|
"react-icons/fc",
|
||||||
|
"react-icons/fi",
|
||||||
|
"react-icons/gi",
|
||||||
|
"react-icons/go",
|
||||||
|
"react-icons/gr",
|
||||||
|
"react-icons/hi",
|
||||||
|
"react-icons/hi2",
|
||||||
|
"react-icons/im",
|
||||||
|
"react-icons/io",
|
||||||
|
"react-icons/io5",
|
||||||
|
"react-icons/lia",
|
||||||
|
"react-icons/lib",
|
||||||
|
"react-icons/lu",
|
||||||
|
"react-icons/md",
|
||||||
|
"react-icons/pi",
|
||||||
|
"react-icons/ri",
|
||||||
|
"react-icons/rx",
|
||||||
|
"react-icons/si",
|
||||||
|
"react-icons/sl",
|
||||||
|
"react-icons/tb",
|
||||||
|
"react-icons/tfi",
|
||||||
|
"react-icons/ti",
|
||||||
|
"react-icons/vsc",
|
||||||
|
"react-icons/wi"
|
||||||
|
],
|
||||||
|
"trustHostHeader": false,
|
||||||
|
"isExperimentalCompile": false
|
||||||
|
},
|
||||||
|
"htmlLimitedBots": "[\\w-]+-Google|Google-[\\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight",
|
||||||
|
"bundlePagesRouterDependencies": false,
|
||||||
|
"configFileName": "next.config.ts",
|
||||||
|
"turbopack": {
|
||||||
|
"root": "/Users/zhangxiang/Codes/Gitee/home-page"
|
||||||
|
},
|
||||||
|
"distDirRoot": "dist"
|
||||||
|
},
|
||||||
|
"appDir": "/Users/zhangxiang/Codes/Gitee/home-page/ruixin-website-react",
|
||||||
|
"relativeAppDir": "ruixin-website-react",
|
||||||
|
"files": [
|
||||||
|
".next/routes-manifest.json",
|
||||||
|
".next/server/pages-manifest.json",
|
||||||
|
".next/build-manifest.json",
|
||||||
|
".next/prerender-manifest.json",
|
||||||
|
".next/server/functions-config-manifest.json",
|
||||||
|
".next/server/middleware-manifest.json",
|
||||||
|
".next/server/middleware-build-manifest.js",
|
||||||
|
".next/server/app-paths-manifest.json",
|
||||||
|
".next/app-path-routes-manifest.json",
|
||||||
|
".next/server/server-reference-manifest.js",
|
||||||
|
".next/server/server-reference-manifest.json",
|
||||||
|
".next/BUILD_ID",
|
||||||
|
".next/server/next-font-manifest.js",
|
||||||
|
".next/server/next-font-manifest.json",
|
||||||
|
".next/required-server-files.json"
|
||||||
|
],
|
||||||
|
"ignore": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,321 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"config": {
|
||||||
|
"env": {},
|
||||||
|
"webpack": null,
|
||||||
|
"typescript": {
|
||||||
|
"ignoreBuildErrors": false
|
||||||
|
},
|
||||||
|
"typedRoutes": false,
|
||||||
|
"distDir": ".next",
|
||||||
|
"cleanDistDir": true,
|
||||||
|
"assetPrefix": "",
|
||||||
|
"cacheMaxMemorySize": 52428800,
|
||||||
|
"configOrigin": "next.config.ts",
|
||||||
|
"useFileSystemPublicRoutes": true,
|
||||||
|
"generateEtags": true,
|
||||||
|
"pageExtensions": [
|
||||||
|
"tsx",
|
||||||
|
"ts",
|
||||||
|
"jsx",
|
||||||
|
"js"
|
||||||
|
],
|
||||||
|
"poweredByHeader": true,
|
||||||
|
"compress": true,
|
||||||
|
"images": {
|
||||||
|
"deviceSizes": [
|
||||||
|
640,
|
||||||
|
750,
|
||||||
|
828,
|
||||||
|
1080,
|
||||||
|
1200,
|
||||||
|
1920,
|
||||||
|
2048,
|
||||||
|
3840
|
||||||
|
],
|
||||||
|
"imageSizes": [
|
||||||
|
32,
|
||||||
|
48,
|
||||||
|
64,
|
||||||
|
96,
|
||||||
|
128,
|
||||||
|
256,
|
||||||
|
384
|
||||||
|
],
|
||||||
|
"path": "/_next/image",
|
||||||
|
"loader": "default",
|
||||||
|
"loaderFile": "",
|
||||||
|
"domains": [],
|
||||||
|
"disableStaticImages": false,
|
||||||
|
"minimumCacheTTL": 14400,
|
||||||
|
"formats": [
|
||||||
|
"image/webp"
|
||||||
|
],
|
||||||
|
"maximumRedirects": 3,
|
||||||
|
"maximumResponseBody": 50000000,
|
||||||
|
"dangerouslyAllowLocalIP": false,
|
||||||
|
"dangerouslyAllowSVG": false,
|
||||||
|
"contentSecurityPolicy": "script-src 'none'; frame-src 'none'; sandbox;",
|
||||||
|
"contentDispositionType": "attachment",
|
||||||
|
"localPatterns": [
|
||||||
|
{
|
||||||
|
"pathname": "**",
|
||||||
|
"search": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"remotePatterns": [],
|
||||||
|
"qualities": [
|
||||||
|
75
|
||||||
|
],
|
||||||
|
"unoptimized": true
|
||||||
|
},
|
||||||
|
"devIndicators": {
|
||||||
|
"position": "bottom-left"
|
||||||
|
},
|
||||||
|
"onDemandEntries": {
|
||||||
|
"maxInactiveAge": 60000,
|
||||||
|
"pagesBufferLength": 5
|
||||||
|
},
|
||||||
|
"basePath": "",
|
||||||
|
"sassOptions": {},
|
||||||
|
"trailingSlash": false,
|
||||||
|
"i18n": null,
|
||||||
|
"productionBrowserSourceMaps": false,
|
||||||
|
"excludeDefaultMomentLocales": true,
|
||||||
|
"reactProductionProfiling": false,
|
||||||
|
"reactStrictMode": null,
|
||||||
|
"reactMaxHeadersLength": 6000,
|
||||||
|
"httpAgentOptions": {
|
||||||
|
"keepAlive": true
|
||||||
|
},
|
||||||
|
"logging": {},
|
||||||
|
"compiler": {},
|
||||||
|
"expireTime": 31536000,
|
||||||
|
"staticPageGenerationTimeout": 60,
|
||||||
|
"output": "export",
|
||||||
|
"modularizeImports": {
|
||||||
|
"@mui/icons-material": {
|
||||||
|
"transform": "@mui/icons-material/{{member}}"
|
||||||
|
},
|
||||||
|
"lodash": {
|
||||||
|
"transform": "lodash/{{member}}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"outputFileTracingRoot": "/Users/zhangxiang/Codes/Gitee/home-page",
|
||||||
|
"cacheComponents": false,
|
||||||
|
"cacheLife": {
|
||||||
|
"default": {
|
||||||
|
"stale": 300,
|
||||||
|
"revalidate": 900,
|
||||||
|
"expire": 4294967294
|
||||||
|
},
|
||||||
|
"seconds": {
|
||||||
|
"stale": 30,
|
||||||
|
"revalidate": 1,
|
||||||
|
"expire": 60
|
||||||
|
},
|
||||||
|
"minutes": {
|
||||||
|
"stale": 300,
|
||||||
|
"revalidate": 60,
|
||||||
|
"expire": 3600
|
||||||
|
},
|
||||||
|
"hours": {
|
||||||
|
"stale": 300,
|
||||||
|
"revalidate": 3600,
|
||||||
|
"expire": 86400
|
||||||
|
},
|
||||||
|
"days": {
|
||||||
|
"stale": 300,
|
||||||
|
"revalidate": 86400,
|
||||||
|
"expire": 604800
|
||||||
|
},
|
||||||
|
"weeks": {
|
||||||
|
"stale": 300,
|
||||||
|
"revalidate": 604800,
|
||||||
|
"expire": 2592000
|
||||||
|
},
|
||||||
|
"max": {
|
||||||
|
"stale": 300,
|
||||||
|
"revalidate": 2592000,
|
||||||
|
"expire": 31536000
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"cacheHandlers": {},
|
||||||
|
"experimental": {
|
||||||
|
"useSkewCookie": false,
|
||||||
|
"cssChunking": true,
|
||||||
|
"multiZoneDraftMode": false,
|
||||||
|
"appNavFailHandling": false,
|
||||||
|
"prerenderEarlyExit": true,
|
||||||
|
"serverMinification": true,
|
||||||
|
"linkNoTouchStart": false,
|
||||||
|
"caseSensitiveRoutes": false,
|
||||||
|
"dynamicOnHover": false,
|
||||||
|
"preloadEntriesOnStart": true,
|
||||||
|
"clientRouterFilter": true,
|
||||||
|
"clientRouterFilterRedirects": false,
|
||||||
|
"fetchCacheKeyPrefix": "",
|
||||||
|
"proxyPrefetch": "flexible",
|
||||||
|
"optimisticClientCache": true,
|
||||||
|
"manualClientBasePath": false,
|
||||||
|
"cpus": 7,
|
||||||
|
"memoryBasedWorkersCount": false,
|
||||||
|
"imgOptConcurrency": null,
|
||||||
|
"imgOptTimeoutInSeconds": 7,
|
||||||
|
"imgOptMaxInputPixels": 268402689,
|
||||||
|
"imgOptSequentialRead": null,
|
||||||
|
"imgOptSkipMetadata": null,
|
||||||
|
"isrFlushToDisk": true,
|
||||||
|
"workerThreads": false,
|
||||||
|
"optimizeCss": false,
|
||||||
|
"nextScriptWorkers": false,
|
||||||
|
"scrollRestoration": false,
|
||||||
|
"externalDir": false,
|
||||||
|
"disableOptimizedLoading": false,
|
||||||
|
"gzipSize": true,
|
||||||
|
"craCompat": false,
|
||||||
|
"esmExternals": true,
|
||||||
|
"fullySpecified": false,
|
||||||
|
"swcTraceProfiling": false,
|
||||||
|
"forceSwcTransforms": false,
|
||||||
|
"largePageDataBytes": 128000,
|
||||||
|
"typedEnv": false,
|
||||||
|
"parallelServerCompiles": false,
|
||||||
|
"parallelServerBuildTraces": false,
|
||||||
|
"ppr": false,
|
||||||
|
"authInterrupts": false,
|
||||||
|
"webpackMemoryOptimizations": false,
|
||||||
|
"optimizeServerReact": true,
|
||||||
|
"viewTransition": false,
|
||||||
|
"removeUncaughtErrorAndRejectionListeners": false,
|
||||||
|
"validateRSCRequestHeaders": false,
|
||||||
|
"staleTimes": {
|
||||||
|
"dynamic": 0,
|
||||||
|
"static": 300
|
||||||
|
},
|
||||||
|
"reactDebugChannel": false,
|
||||||
|
"serverComponentsHmrCache": true,
|
||||||
|
"staticGenerationMaxConcurrency": 8,
|
||||||
|
"staticGenerationMinPagesPerWorker": 25,
|
||||||
|
"transitionIndicator": false,
|
||||||
|
"inlineCss": false,
|
||||||
|
"useCache": false,
|
||||||
|
"globalNotFound": false,
|
||||||
|
"browserDebugInfoInTerminal": false,
|
||||||
|
"lockDistDir": true,
|
||||||
|
"isolatedDevBuild": true,
|
||||||
|
"proxyClientMaxBodySize": 10485760,
|
||||||
|
"hideLogsAfterAbort": false,
|
||||||
|
"mcpServer": true,
|
||||||
|
"turbopackFileSystemCacheForDev": true,
|
||||||
|
"turbopackFileSystemCacheForBuild": false,
|
||||||
|
"turbopackInferModuleSideEffects": false,
|
||||||
|
"optimizePackageImports": [
|
||||||
|
"lucide-react",
|
||||||
|
"date-fns",
|
||||||
|
"lodash-es",
|
||||||
|
"ramda",
|
||||||
|
"antd",
|
||||||
|
"react-bootstrap",
|
||||||
|
"ahooks",
|
||||||
|
"@ant-design/icons",
|
||||||
|
"@headlessui/react",
|
||||||
|
"@headlessui-float/react",
|
||||||
|
"@heroicons/react/20/solid",
|
||||||
|
"@heroicons/react/24/solid",
|
||||||
|
"@heroicons/react/24/outline",
|
||||||
|
"@visx/visx",
|
||||||
|
"@tremor/react",
|
||||||
|
"rxjs",
|
||||||
|
"@mui/material",
|
||||||
|
"@mui/icons-material",
|
||||||
|
"recharts",
|
||||||
|
"react-use",
|
||||||
|
"effect",
|
||||||
|
"@effect/schema",
|
||||||
|
"@effect/platform",
|
||||||
|
"@effect/platform-node",
|
||||||
|
"@effect/platform-browser",
|
||||||
|
"@effect/platform-bun",
|
||||||
|
"@effect/sql",
|
||||||
|
"@effect/sql-mssql",
|
||||||
|
"@effect/sql-mysql2",
|
||||||
|
"@effect/sql-pg",
|
||||||
|
"@effect/sql-sqlite-node",
|
||||||
|
"@effect/sql-sqlite-bun",
|
||||||
|
"@effect/sql-sqlite-wasm",
|
||||||
|
"@effect/sql-sqlite-react-native",
|
||||||
|
"@effect/rpc",
|
||||||
|
"@effect/rpc-http",
|
||||||
|
"@effect/typeclass",
|
||||||
|
"@effect/experimental",
|
||||||
|
"@effect/opentelemetry",
|
||||||
|
"@material-ui/core",
|
||||||
|
"@material-ui/icons",
|
||||||
|
"@tabler/icons-react",
|
||||||
|
"mui-core",
|
||||||
|
"react-icons/ai",
|
||||||
|
"react-icons/bi",
|
||||||
|
"react-icons/bs",
|
||||||
|
"react-icons/cg",
|
||||||
|
"react-icons/ci",
|
||||||
|
"react-icons/di",
|
||||||
|
"react-icons/fa",
|
||||||
|
"react-icons/fa6",
|
||||||
|
"react-icons/fc",
|
||||||
|
"react-icons/fi",
|
||||||
|
"react-icons/gi",
|
||||||
|
"react-icons/go",
|
||||||
|
"react-icons/gr",
|
||||||
|
"react-icons/hi",
|
||||||
|
"react-icons/hi2",
|
||||||
|
"react-icons/im",
|
||||||
|
"react-icons/io",
|
||||||
|
"react-icons/io5",
|
||||||
|
"react-icons/lia",
|
||||||
|
"react-icons/lib",
|
||||||
|
"react-icons/lu",
|
||||||
|
"react-icons/md",
|
||||||
|
"react-icons/pi",
|
||||||
|
"react-icons/ri",
|
||||||
|
"react-icons/rx",
|
||||||
|
"react-icons/si",
|
||||||
|
"react-icons/sl",
|
||||||
|
"react-icons/tb",
|
||||||
|
"react-icons/tfi",
|
||||||
|
"react-icons/ti",
|
||||||
|
"react-icons/vsc",
|
||||||
|
"react-icons/wi"
|
||||||
|
],
|
||||||
|
"trustHostHeader": false,
|
||||||
|
"isExperimentalCompile": false
|
||||||
|
},
|
||||||
|
"htmlLimitedBots": "[\\w-]+-Google|Google-[\\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight",
|
||||||
|
"bundlePagesRouterDependencies": false,
|
||||||
|
"configFileName": "next.config.ts",
|
||||||
|
"turbopack": {
|
||||||
|
"root": "/Users/zhangxiang/Codes/Gitee/home-page"
|
||||||
|
},
|
||||||
|
"distDirRoot": "dist"
|
||||||
|
},
|
||||||
|
"appDir": "/Users/zhangxiang/Codes/Gitee/home-page/ruixin-website-react",
|
||||||
|
"relativeAppDir": "ruixin-website-react",
|
||||||
|
"files": [
|
||||||
|
".next/routes-manifest.json",
|
||||||
|
".next/server/pages-manifest.json",
|
||||||
|
".next/build-manifest.json",
|
||||||
|
".next/prerender-manifest.json",
|
||||||
|
".next/server/functions-config-manifest.json",
|
||||||
|
".next/server/middleware-manifest.json",
|
||||||
|
".next/server/middleware-build-manifest.js",
|
||||||
|
".next/server/app-paths-manifest.json",
|
||||||
|
".next/app-path-routes-manifest.json",
|
||||||
|
".next/server/server-reference-manifest.js",
|
||||||
|
".next/server/server-reference-manifest.json",
|
||||||
|
".next/BUILD_ID",
|
||||||
|
".next/server/next-font-manifest.js",
|
||||||
|
".next/server/next-font-manifest.json",
|
||||||
|
".next/required-server-files.json"
|
||||||
|
],
|
||||||
|
"ignore": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,107 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"pages404": true,
|
||||||
|
"appType": "app",
|
||||||
|
"caseSensitive": false,
|
||||||
|
"basePath": "",
|
||||||
|
"redirects": [
|
||||||
|
{
|
||||||
|
"source": "/:path+/",
|
||||||
|
"destination": "/:path+",
|
||||||
|
"internal": true,
|
||||||
|
"priority": true,
|
||||||
|
"statusCode": 308,
|
||||||
|
"regex": "^(?:/((?:[^/]+?)(?:/(?:[^/]+?))*))/$"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"headers": [],
|
||||||
|
"rewrites": {
|
||||||
|
"beforeFiles": [],
|
||||||
|
"afterFiles": [],
|
||||||
|
"fallback": []
|
||||||
|
},
|
||||||
|
"dynamicRoutes": [
|
||||||
|
{
|
||||||
|
"page": "/news/[slug]",
|
||||||
|
"regex": "^/news/([^/]+?)(?:/)?$",
|
||||||
|
"routeKeys": {
|
||||||
|
"nxtPslug": "nxtPslug"
|
||||||
|
},
|
||||||
|
"namedRegex": "^/news/(?<nxtPslug>[^/]+?)(?:/)?$"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"staticRoutes": [
|
||||||
|
{
|
||||||
|
"page": "/",
|
||||||
|
"regex": "^/(?:/)?$",
|
||||||
|
"routeKeys": {},
|
||||||
|
"namedRegex": "^/(?:/)?$"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"page": "/_global-error",
|
||||||
|
"regex": "^/_global\\-error(?:/)?$",
|
||||||
|
"routeKeys": {},
|
||||||
|
"namedRegex": "^/_global\\-error(?:/)?$"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"page": "/_not-found",
|
||||||
|
"regex": "^/_not\\-found(?:/)?$",
|
||||||
|
"routeKeys": {},
|
||||||
|
"namedRegex": "^/_not\\-found(?:/)?$"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"page": "/about",
|
||||||
|
"regex": "^/about(?:/)?$",
|
||||||
|
"routeKeys": {},
|
||||||
|
"namedRegex": "^/about(?:/)?$"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"page": "/contact",
|
||||||
|
"regex": "^/contact(?:/)?$",
|
||||||
|
"routeKeys": {},
|
||||||
|
"namedRegex": "^/contact(?:/)?$"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"page": "/favicon.ico",
|
||||||
|
"regex": "^/favicon\\.ico(?:/)?$",
|
||||||
|
"routeKeys": {},
|
||||||
|
"namedRegex": "^/favicon\\.ico(?:/)?$"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"page": "/news",
|
||||||
|
"regex": "^/news(?:/)?$",
|
||||||
|
"routeKeys": {},
|
||||||
|
"namedRegex": "^/news(?:/)?$"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"page": "/products",
|
||||||
|
"regex": "^/products(?:/)?$",
|
||||||
|
"routeKeys": {},
|
||||||
|
"namedRegex": "^/products(?:/)?$"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"page": "/services",
|
||||||
|
"regex": "^/services(?:/)?$",
|
||||||
|
"routeKeys": {},
|
||||||
|
"namedRegex": "^/services(?:/)?$"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"dataRoutes": [],
|
||||||
|
"rsc": {
|
||||||
|
"header": "rsc",
|
||||||
|
"varyHeader": "rsc, next-router-state-tree, next-router-prefetch, next-router-segment-prefetch",
|
||||||
|
"prefetchHeader": "next-router-prefetch",
|
||||||
|
"didPostponeHeader": "x-nextjs-postponed",
|
||||||
|
"contentTypeHeader": "text/x-component",
|
||||||
|
"suffix": ".rsc",
|
||||||
|
"prefetchSegmentHeader": "next-router-segment-prefetch",
|
||||||
|
"prefetchSegmentSuffix": ".segment.rsc",
|
||||||
|
"prefetchSegmentDirSuffix": ".segments",
|
||||||
|
"clientParamParsing": false,
|
||||||
|
"dynamicRSCPrerender": false
|
||||||
|
},
|
||||||
|
"rewriteHeaders": {
|
||||||
|
"pathHeader": "x-nextjs-rewritten-path",
|
||||||
|
"queryHeader": "x-nextjs-rewritten-query"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"/(marketing)/about/page": "app/(marketing)/about/page.js",
|
||||||
|
"/(marketing)/contact/page": "app/(marketing)/contact/page.js",
|
||||||
|
"/(marketing)/news/[slug]/page": "app/(marketing)/news/[slug]/page.js",
|
||||||
|
"/(marketing)/news/page": "app/(marketing)/news/page.js",
|
||||||
|
"/(marketing)/page": "app/(marketing)/page.js",
|
||||||
|
"/(marketing)/products/page": "app/(marketing)/products/page.js",
|
||||||
|
"/(marketing)/services/page": "app/(marketing)/services/page.js",
|
||||||
|
"/_global-error/page": "app/_global-error/page.js",
|
||||||
|
"/_not-found/page": "app/_not-found/page.js",
|
||||||
|
"/favicon.ico/route": "app/favicon.ico/route.js"
|
||||||
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
var R=require("../../../chunks/ssr/[turbopack]_runtime.js")("server/app/(marketing)/about/page.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__7fb8e3f1._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_3635adba._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_src_components_ui_badge_tsx_b1c560d1._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_091af7ec._.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__b7696c61._.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__180e4b55._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_0e6b425d._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_src_app_458e58ed._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_global-error_c57582c6.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__ef2905a0._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_64b3a6d7._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_forbidden_ff8e9585.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_unauthorized_681750b6.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_39b4095f._.js")
|
||||||
|
R.c("server/chunks/ssr/de846__next-internal_server_app_(marketing)_about_page_actions_261dc7d8.js")
|
||||||
|
R.m(61400)
|
||||||
|
module.exports=R.m(61400).exports
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"sources": [],
|
||||||
|
"sections": []
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"/(marketing)/about/page": "app/(marketing)/about/page.js"
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"devFiles": [],
|
||||||
|
"ampDevFiles": [],
|
||||||
|
"polyfillFiles": [
|
||||||
|
"static/chunks/a6dad97d9634a72d.js"
|
||||||
|
],
|
||||||
|
"lowPriorityFiles": [],
|
||||||
|
"rootMainFiles": [
|
||||||
|
"static/chunks/2855866a65c6f3f9.js",
|
||||||
|
"static/chunks/7c421428f53947e0.js",
|
||||||
|
"static/chunks/35bc7b7b98f305b3.js",
|
||||||
|
"static/chunks/6198008163122955.js",
|
||||||
|
"static/chunks/turbopack-7e8c1703cae88b4a.js"
|
||||||
|
],
|
||||||
|
"pages": {},
|
||||||
|
"ampFirstPages": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"pages": {},
|
||||||
|
"app": {
|
||||||
|
"[project]/ruixin-website-react/src/app/(marketing)/about/page": [
|
||||||
|
"static/media/caa3a2e1cccd8315-s.p.853070df.woff2",
|
||||||
|
"static/media/797e433ab948586e-s.p.dbea232f.woff2"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"appUsingSizeAdjust": true,
|
||||||
|
"pagesUsingSizeAdjust": false
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"node": {},
|
||||||
|
"edge": {}
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,17 @@
|
|||||||
|
var R=require("../../../chunks/ssr/[turbopack]_runtime.js")("server/app/(marketing)/contact/page.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__b245db2b._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_091af7ec._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_522ba525._.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__b7696c61._.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__180e4b55._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_0e6b425d._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_src_app_458e58ed._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_global-error_c57582c6.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__ef2905a0._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_64b3a6d7._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_forbidden_ff8e9585.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_unauthorized_681750b6.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_39b4095f._.js")
|
||||||
|
R.c("server/chunks/ssr/de846__next-internal_server_app_(marketing)_contact_page_actions_dccb80a0.js")
|
||||||
|
R.m(72272)
|
||||||
|
module.exports=R.m(72272).exports
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"sources": [],
|
||||||
|
"sections": []
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"/(marketing)/contact/page": "app/(marketing)/contact/page.js"
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"devFiles": [],
|
||||||
|
"ampDevFiles": [],
|
||||||
|
"polyfillFiles": [
|
||||||
|
"static/chunks/a6dad97d9634a72d.js"
|
||||||
|
],
|
||||||
|
"lowPriorityFiles": [],
|
||||||
|
"rootMainFiles": [
|
||||||
|
"static/chunks/2855866a65c6f3f9.js",
|
||||||
|
"static/chunks/7c421428f53947e0.js",
|
||||||
|
"static/chunks/35bc7b7b98f305b3.js",
|
||||||
|
"static/chunks/6198008163122955.js",
|
||||||
|
"static/chunks/turbopack-7e8c1703cae88b4a.js"
|
||||||
|
],
|
||||||
|
"pages": {},
|
||||||
|
"ampFirstPages": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"pages": {},
|
||||||
|
"app": {
|
||||||
|
"[project]/ruixin-website-react/src/app/(marketing)/contact/page": [
|
||||||
|
"static/media/caa3a2e1cccd8315-s.p.853070df.woff2",
|
||||||
|
"static/media/797e433ab948586e-s.p.dbea232f.woff2"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"appUsingSizeAdjust": true,
|
||||||
|
"pagesUsingSizeAdjust": false
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"node": {},
|
||||||
|
"edge": {}
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,19 @@
|
|||||||
|
var R=require("../../../../chunks/ssr/[turbopack]_runtime.js")("server/app/(marketing)/news/[slug]/page.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__7b6fd8f1._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_c6a949f3._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_091af7ec._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_src_components_ui_badge_tsx_b1c560d1._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_9b5fd6c0._.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__b7696c61._.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__180e4b55._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_0e6b425d._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_src_app_458e58ed._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_global-error_c57582c6.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__ef2905a0._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_64b3a6d7._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_forbidden_ff8e9585.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_unauthorized_681750b6.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_39b4095f._.js")
|
||||||
|
R.c("server/chunks/ssr/de846__next-internal_server_app_(marketing)_news_[slug]_page_actions_12965201.js")
|
||||||
|
R.m(73416)
|
||||||
|
module.exports=R.m(73416).exports
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"sources": [],
|
||||||
|
"sections": []
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"/(marketing)/news/[slug]/page": "app/(marketing)/news/[slug]/page.js"
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"devFiles": [],
|
||||||
|
"ampDevFiles": [],
|
||||||
|
"polyfillFiles": [
|
||||||
|
"static/chunks/a6dad97d9634a72d.js"
|
||||||
|
],
|
||||||
|
"lowPriorityFiles": [],
|
||||||
|
"rootMainFiles": [
|
||||||
|
"static/chunks/2855866a65c6f3f9.js",
|
||||||
|
"static/chunks/7c421428f53947e0.js",
|
||||||
|
"static/chunks/35bc7b7b98f305b3.js",
|
||||||
|
"static/chunks/6198008163122955.js",
|
||||||
|
"static/chunks/turbopack-7e8c1703cae88b4a.js"
|
||||||
|
],
|
||||||
|
"pages": {},
|
||||||
|
"ampFirstPages": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"pages": {},
|
||||||
|
"app": {
|
||||||
|
"[project]/ruixin-website-react/src/app/(marketing)/news/[slug]/page": [
|
||||||
|
"static/media/caa3a2e1cccd8315-s.p.853070df.woff2",
|
||||||
|
"static/media/797e433ab948586e-s.p.dbea232f.woff2"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"appUsingSizeAdjust": true,
|
||||||
|
"pagesUsingSizeAdjust": false
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"node": {},
|
||||||
|
"edge": {}
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,18 @@
|
|||||||
|
var R=require("../../../chunks/ssr/[turbopack]_runtime.js")("server/app/(marketing)/news/page.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__7b2db7a0._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_980b9887._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_091af7ec._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_src_components_ui_badge_tsx_b1c560d1._.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__b7696c61._.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__180e4b55._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_0e6b425d._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_src_app_458e58ed._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_global-error_c57582c6.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__ef2905a0._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_64b3a6d7._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_forbidden_ff8e9585.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_unauthorized_681750b6.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_39b4095f._.js")
|
||||||
|
R.c("server/chunks/ssr/de846__next-internal_server_app_(marketing)_news_page_actions_3794397c.js")
|
||||||
|
R.m(10047)
|
||||||
|
module.exports=R.m(10047).exports
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"sources": [],
|
||||||
|
"sections": []
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"/(marketing)/news/page": "app/(marketing)/news/page.js"
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"devFiles": [],
|
||||||
|
"ampDevFiles": [],
|
||||||
|
"polyfillFiles": [
|
||||||
|
"static/chunks/a6dad97d9634a72d.js"
|
||||||
|
],
|
||||||
|
"lowPriorityFiles": [],
|
||||||
|
"rootMainFiles": [
|
||||||
|
"static/chunks/2855866a65c6f3f9.js",
|
||||||
|
"static/chunks/7c421428f53947e0.js",
|
||||||
|
"static/chunks/35bc7b7b98f305b3.js",
|
||||||
|
"static/chunks/6198008163122955.js",
|
||||||
|
"static/chunks/turbopack-7e8c1703cae88b4a.js"
|
||||||
|
],
|
||||||
|
"pages": {},
|
||||||
|
"ampFirstPages": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"pages": {},
|
||||||
|
"app": {
|
||||||
|
"[project]/ruixin-website-react/src/app/(marketing)/news/page": [
|
||||||
|
"static/media/caa3a2e1cccd8315-s.p.853070df.woff2",
|
||||||
|
"static/media/797e433ab948586e-s.p.dbea232f.woff2"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"appUsingSizeAdjust": true,
|
||||||
|
"pagesUsingSizeAdjust": false
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"node": {},
|
||||||
|
"edge": {}
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,17 @@
|
|||||||
|
var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/(marketing)/page.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__7e90798c._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_091af7ec._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_6f56fe37._.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__b7696c61._.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__180e4b55._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_0e6b425d._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_src_app_458e58ed._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_global-error_c57582c6.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__ef2905a0._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_64b3a6d7._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_forbidden_ff8e9585.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_unauthorized_681750b6.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_39b4095f._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react__next-internal_server_app_(marketing)_page_actions_f776cd97.js")
|
||||||
|
R.m(57001)
|
||||||
|
module.exports=R.m(57001).exports
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"sources": [],
|
||||||
|
"sections": []
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"/(marketing)/page": "app/(marketing)/page.js"
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"devFiles": [],
|
||||||
|
"ampDevFiles": [],
|
||||||
|
"polyfillFiles": [
|
||||||
|
"static/chunks/a6dad97d9634a72d.js"
|
||||||
|
],
|
||||||
|
"lowPriorityFiles": [],
|
||||||
|
"rootMainFiles": [
|
||||||
|
"static/chunks/2855866a65c6f3f9.js",
|
||||||
|
"static/chunks/7c421428f53947e0.js",
|
||||||
|
"static/chunks/35bc7b7b98f305b3.js",
|
||||||
|
"static/chunks/6198008163122955.js",
|
||||||
|
"static/chunks/turbopack-7e8c1703cae88b4a.js"
|
||||||
|
],
|
||||||
|
"pages": {},
|
||||||
|
"ampFirstPages": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"pages": {},
|
||||||
|
"app": {
|
||||||
|
"[project]/ruixin-website-react/src/app/(marketing)/page": [
|
||||||
|
"static/media/caa3a2e1cccd8315-s.p.853070df.woff2",
|
||||||
|
"static/media/797e433ab948586e-s.p.dbea232f.woff2"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"appUsingSizeAdjust": true,
|
||||||
|
"pagesUsingSizeAdjust": false
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"node": {},
|
||||||
|
"edge": {}
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,18 @@
|
|||||||
|
var R=require("../../../chunks/ssr/[turbopack]_runtime.js")("server/app/(marketing)/products/page.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__1033722b._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_607cd85e._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_091af7ec._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_src_components_ui_badge_tsx_b1c560d1._.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__b7696c61._.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__180e4b55._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_0e6b425d._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_src_app_458e58ed._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_global-error_c57582c6.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__ef2905a0._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_64b3a6d7._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_forbidden_ff8e9585.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_unauthorized_681750b6.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_39b4095f._.js")
|
||||||
|
R.c("server/chunks/ssr/de846__next-internal_server_app_(marketing)_products_page_actions_59b80507.js")
|
||||||
|
R.m(53037)
|
||||||
|
module.exports=R.m(53037).exports
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"sources": [],
|
||||||
|
"sections": []
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"/(marketing)/products/page": "app/(marketing)/products/page.js"
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"devFiles": [],
|
||||||
|
"ampDevFiles": [],
|
||||||
|
"polyfillFiles": [
|
||||||
|
"static/chunks/a6dad97d9634a72d.js"
|
||||||
|
],
|
||||||
|
"lowPriorityFiles": [],
|
||||||
|
"rootMainFiles": [
|
||||||
|
"static/chunks/2855866a65c6f3f9.js",
|
||||||
|
"static/chunks/7c421428f53947e0.js",
|
||||||
|
"static/chunks/35bc7b7b98f305b3.js",
|
||||||
|
"static/chunks/6198008163122955.js",
|
||||||
|
"static/chunks/turbopack-7e8c1703cae88b4a.js"
|
||||||
|
],
|
||||||
|
"pages": {},
|
||||||
|
"ampFirstPages": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"pages": {},
|
||||||
|
"app": {
|
||||||
|
"[project]/ruixin-website-react/src/app/(marketing)/products/page": [
|
||||||
|
"static/media/caa3a2e1cccd8315-s.p.853070df.woff2",
|
||||||
|
"static/media/797e433ab948586e-s.p.dbea232f.woff2"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"appUsingSizeAdjust": true,
|
||||||
|
"pagesUsingSizeAdjust": false
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"node": {},
|
||||||
|
"edge": {}
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,18 @@
|
|||||||
|
var R=require("../../../chunks/ssr/[turbopack]_runtime.js")("server/app/(marketing)/services/page.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__740e9795._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_974a36e5._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_src_components_ui_badge_tsx_b1c560d1._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_091af7ec._.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__b7696c61._.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__180e4b55._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_0e6b425d._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_src_app_458e58ed._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_global-error_c57582c6.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__ef2905a0._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_64b3a6d7._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_forbidden_ff8e9585.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_client_components_builtin_unauthorized_681750b6.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_39b4095f._.js")
|
||||||
|
R.c("server/chunks/ssr/de846__next-internal_server_app_(marketing)_services_page_actions_71fc8e63.js")
|
||||||
|
R.m(30734)
|
||||||
|
module.exports=R.m(30734).exports
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"sources": [],
|
||||||
|
"sections": []
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"/(marketing)/services/page": "app/(marketing)/services/page.js"
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"devFiles": [],
|
||||||
|
"ampDevFiles": [],
|
||||||
|
"polyfillFiles": [
|
||||||
|
"static/chunks/a6dad97d9634a72d.js"
|
||||||
|
],
|
||||||
|
"lowPriorityFiles": [],
|
||||||
|
"rootMainFiles": [
|
||||||
|
"static/chunks/2855866a65c6f3f9.js",
|
||||||
|
"static/chunks/7c421428f53947e0.js",
|
||||||
|
"static/chunks/35bc7b7b98f305b3.js",
|
||||||
|
"static/chunks/6198008163122955.js",
|
||||||
|
"static/chunks/turbopack-7e8c1703cae88b4a.js"
|
||||||
|
],
|
||||||
|
"pages": {},
|
||||||
|
"ampFirstPages": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"pages": {},
|
||||||
|
"app": {
|
||||||
|
"[project]/ruixin-website-react/src/app/(marketing)/services/page": [
|
||||||
|
"static/media/caa3a2e1cccd8315-s.p.853070df.woff2",
|
||||||
|
"static/media/797e433ab948586e-s.p.dbea232f.woff2"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"appUsingSizeAdjust": true,
|
||||||
|
"pagesUsingSizeAdjust": false
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"node": {},
|
||||||
|
"edge": {}
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,2 @@
|
|||||||
|
<!DOCTYPE html><!--OdiYp943cvOpOmTEuabW6--><html id="__next_error__"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/2855866a65c6f3f9.js"/><script src="/_next/static/chunks/7c421428f53947e0.js" async=""></script><script src="/_next/static/chunks/35bc7b7b98f305b3.js" async=""></script><script src="/_next/static/chunks/6198008163122955.js" async=""></script><script src="/_next/static/chunks/turbopack-7e8c1703cae88b4a.js" async=""></script><script src="/_next/static/chunks/d1327ca877b958b9.js" async=""></script><script src="/_next/static/chunks/24b8e34e56674a2e.js" async=""></script><meta name="next-size-adjust" content=""/><title>500: Internal Server Error.</title><link rel="icon" href="/favicon.ico?favicon.0b3bf435.ico" sizes="256x256" type="image/x-icon"/><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div style="line-height:48px"><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}
|
||||||
|
@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding-right:23px;font-size:24px;font-weight:500;vertical-align:top">500</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:28px">Internal Server Error.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/2855866a65c6f3f9.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[57445,[\"/_next/static/chunks/d1327ca877b958b9.js\",\"/_next/static/chunks/24b8e34e56674a2e.js\"],\"default\"]\n3:I[27551,[\"/_next/static/chunks/d1327ca877b958b9.js\",\"/_next/static/chunks/24b8e34e56674a2e.js\"],\"default\"]\n4:I[24169,[\"/_next/static/chunks/d1327ca877b958b9.js\",\"/_next/static/chunks/24b8e34e56674a2e.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[24169,[\"/_next/static/chunks/d1327ca877b958b9.js\",\"/_next/static/chunks/24b8e34e56674a2e.js\"],\"ViewportBoundary\"]\n9:I[24169,[\"/_next/static/chunks/d1327ca877b958b9.js\",\"/_next/static/chunks/24b8e34e56674a2e.js\"],\"MetadataBoundary\"]\nb:I[8485,[\"/_next/static/chunks/d1327ca877b958b9.js\",\"/_next/static/chunks/24b8e34e56674a2e.js\"],\"default\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"OdiYp943cvOpOmTEuabW6\",\"c\":[\"\",\"_global-error\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]}],[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"html\",null,{\"id\":\"__next_error__\",\"children\":[[\"$\",\"head\",null,{\"children\":[\"$\",\"title\",null,{\"children\":\"500: Internal Server Error.\"}]}],[\"$\",\"body\",null,{\"children\":[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"style\":{\"lineHeight\":\"48px\"},\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"paddingRight\":23,\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\"},\"children\":\"500\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"28px\"},\"children\":\"Internal Server Error.\"}]}]]}]}]}]]}],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L7\",null,{\"children\":\"$L8\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$La\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$b\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"c:I[424,[\"/_next/static/chunks/d1327ca877b958b9.js\",\"/_next/static/chunks/24b8e34e56674a2e.js\"],\"IconMark\"]\n6:null\na:[[\"$\",\"link\",\"0\",{\"rel\":\"icon\",\"href\":\"/favicon.ico?favicon.0b3bf435.ico\",\"sizes\":\"256x256\",\"type\":\"image/x-icon\"}],[\"$\",\"$Lc\",\"1\",{}]]\n"])</script></body></html>
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"status": 500,
|
||||||
|
"headers": {
|
||||||
|
"x-nextjs-stale-time": "300",
|
||||||
|
"x-nextjs-prerender": "1",
|
||||||
|
"x-next-cache-tags": "_N_T_/layout,_N_T_/_global-error/layout,_N_T_/_global-error/page,_N_T_/_global-error"
|
||||||
|
},
|
||||||
|
"segmentPaths": [
|
||||||
|
"/_tree",
|
||||||
|
"/_full",
|
||||||
|
"/__PAGE__",
|
||||||
|
"/_index",
|
||||||
|
"/_head"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[57445,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"default"]
|
||||||
|
3:I[27551,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"default"]
|
||||||
|
4:I[24169,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"OutletBoundary"]
|
||||||
|
5:"$Sreact.suspense"
|
||||||
|
7:I[24169,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"ViewportBoundary"]
|
||||||
|
9:I[24169,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"MetadataBoundary"]
|
||||||
|
b:I[8485,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"default"]
|
||||||
|
0:{"P":null,"b":"OdiYp943cvOpOmTEuabW6","c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":["$","title",null,{"children":"500: Internal Server Error."}]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"lineHeight":"48px"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","paddingRight":23,"fontSize":24,"fontWeight":500,"verticalAlign":"top"},"children":"500"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"28px"},"children":"Internal Server Error."}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L7",null,{"children":"$L8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$La"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
|
||||||
|
8:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
|
c:I[424,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"IconMark"]
|
||||||
|
6:null
|
||||||
|
a:[["$","link","0",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$Lc","1",{}]]
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[24169,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"OutletBoundary"]
|
||||||
|
3:"$Sreact.suspense"
|
||||||
|
0:{"buildId":"OdiYp943cvOpOmTEuabW6","rsc":["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":["$","title",null,{"children":"500: Internal Server Error."}]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"lineHeight":"48px"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","paddingRight":23,"fontSize":24,"fontWeight":500,"verticalAlign":"top"},"children":"500"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"28px"},"children":"Internal Server Error."}]}]]}]}]}]]}],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false}
|
||||||
|
4:null
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[57445,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"default"]
|
||||||
|
3:I[27551,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"default"]
|
||||||
|
4:I[24169,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"OutletBoundary"]
|
||||||
|
5:"$Sreact.suspense"
|
||||||
|
7:I[24169,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"ViewportBoundary"]
|
||||||
|
9:I[24169,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"MetadataBoundary"]
|
||||||
|
b:I[8485,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"default"]
|
||||||
|
0:{"P":null,"b":"OdiYp943cvOpOmTEuabW6","c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":["$","title",null,{"children":"500: Internal Server Error."}]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"lineHeight":"48px"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","paddingRight":23,"fontSize":24,"fontWeight":500,"verticalAlign":"top"},"children":"500"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"28px"},"children":"Internal Server Error."}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L7",null,{"children":"$L8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$La"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
|
||||||
|
8:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
|
c:I[424,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"IconMark"]
|
||||||
|
6:null
|
||||||
|
a:[["$","link","0",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$Lc","1",{}]]
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[24169,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"ViewportBoundary"]
|
||||||
|
3:I[24169,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"MetadataBoundary"]
|
||||||
|
4:"$Sreact.suspense"
|
||||||
|
5:I[424,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"IconMark"]
|
||||||
|
0:{"buildId":"OdiYp943cvOpOmTEuabW6","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","link","0",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","1",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[57445,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"default"]
|
||||||
|
3:I[27551,["/_next/static/chunks/d1327ca877b958b9.js","/_next/static/chunks/24b8e34e56674a2e.js"],"default"]
|
||||||
|
0:{"buildId":"OdiYp943cvOpOmTEuabW6","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
0:{"buildId":"OdiYp943cvOpOmTEuabW6","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false},"staleTime":300}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/_global-error/page.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__170c643c._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_091af7ec._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_707a625b._.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__1b731b62._.js")
|
||||||
|
R.c("server/chunks/ssr/[root-of-the-server]__180e4b55._.js")
|
||||||
|
R.c("server/chunks/ssr/95003_next_dist_0e6b425d._.js")
|
||||||
|
R.c("server/chunks/ssr/ruixin-website-react_src_app_458e58ed._.js")
|
||||||
|
R.c("server/chunks/ssr/de846__next-internal_server_app__global-error_page_actions_6ff78b15.js")
|
||||||
|
R.m(38670)
|
||||||
|
module.exports=R.m(38670).exports
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"sources": [],
|
||||||
|
"sections": []
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"version":1,"files":["../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../chunks/ssr/95003_next_dist_0e6b425d._.js","../../chunks/ssr/95003_next_dist_3ba31935._.js","../../chunks/ssr/95003_next_dist_707a625b._.js","../../chunks/ssr/[root-of-the-server]__170c643c._.js","../../chunks/ssr/[root-of-the-server]__180e4b55._.js","../../chunks/ssr/[root-of-the-server]__1b731b62._.js","../../chunks/ssr/[root-of-the-server]__1dab1605._.js","../../chunks/ssr/[turbopack]_runtime.js","../../chunks/ssr/de846__next-internal_server_app__global-error_page_actions_6ff78b15.js","../../chunks/ssr/ruixin-website-react_091af7ec._.js","../../chunks/ssr/ruixin-website-react_src_app_458e58ed._.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"/_global-error/page": "app/_global-error/page.js"
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"devFiles": [],
|
||||||
|
"ampDevFiles": [],
|
||||||
|
"polyfillFiles": [
|
||||||
|
"static/chunks/a6dad97d9634a72d.js"
|
||||||
|
],
|
||||||
|
"lowPriorityFiles": [],
|
||||||
|
"rootMainFiles": [
|
||||||
|
"static/chunks/2855866a65c6f3f9.js",
|
||||||
|
"static/chunks/7c421428f53947e0.js",
|
||||||
|
"static/chunks/35bc7b7b98f305b3.js",
|
||||||
|
"static/chunks/6198008163122955.js",
|
||||||
|
"static/chunks/turbopack-7e8c1703cae88b4a.js"
|
||||||
|
],
|
||||||
|
"pages": {},
|
||||||
|
"ampFirstPages": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"pages": {},
|
||||||
|
"app": {},
|
||||||
|
"appUsingSizeAdjust": false,
|
||||||
|
"pagesUsingSizeAdjust": false
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"node": {},
|
||||||
|
"edge": {}
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user