0.7.0.1
This commit is contained in:
+1
-1
@@ -1 +1 @@
|
||||
WbYR2XE95Gc5XXVQ7W0XS
|
||||
NAO-lsKimvD1dA_Uih5A8
|
||||
@@ -7,15 +7,15 @@
|
||||
"static/chunks/a6dad97d9634a72d.js"
|
||||
],
|
||||
"lowPriorityFiles": [
|
||||
"static/WbYR2XE95Gc5XXVQ7W0XS/_ssgManifest.js",
|
||||
"static/WbYR2XE95Gc5XXVQ7W0XS/_buildManifest.js"
|
||||
"static/NAO-lsKimvD1dA_Uih5A8/_ssgManifest.js",
|
||||
"static/NAO-lsKimvD1dA_Uih5A8/_buildManifest.js"
|
||||
],
|
||||
"rootMainFiles": [
|
||||
"static/chunks/c6c183fbdeff129e.js",
|
||||
"static/chunks/3af7c987a6c28caf.js",
|
||||
"static/chunks/9e02b7100d6e6270.js",
|
||||
"static/chunks/0eaa8682593f715a.js",
|
||||
"static/chunks/ca4429dea6d39825.js",
|
||||
"static/chunks/turbopack-23d2945b770f49d2.js"
|
||||
"static/chunks/fca12c8710bac04f.js",
|
||||
"static/chunks/00501d8005072065.js",
|
||||
"static/chunks/dae599f36ada12e5.js",
|
||||
"static/chunks/c8d8a9d45df7b3b4.js",
|
||||
"static/chunks/e8bd79bd269e9b4f.js",
|
||||
"static/chunks/turbopack-1482dc2f7aa839a8.js"
|
||||
]
|
||||
}
|
||||
@@ -1,206 +0,0 @@
|
||||
module.exports = [
|
||||
"[externals]/path [external] (path, cjs)", ((__turbopack_context__, module, exports) => {
|
||||
|
||||
const mod = __turbopack_context__.x("path", () => require("path"));
|
||||
|
||||
module.exports = mod;
|
||||
}),
|
||||
"[externals]/url [external] (url, cjs)", ((__turbopack_context__, module, exports) => {
|
||||
|
||||
const mod = __turbopack_context__.x("url", () => require("url"));
|
||||
|
||||
module.exports = mod;
|
||||
}),
|
||||
"[externals]/fs [external] (fs, cjs)", ((__turbopack_context__, module, exports) => {
|
||||
|
||||
const mod = __turbopack_context__.x("fs", () => require("fs"));
|
||||
|
||||
module.exports = mod;
|
||||
}),
|
||||
"[project]/Documents/go-new/chinese-family-tree/postcss.config.mjs [postcss] (ecmascript)", ((__turbopack_context__) => {
|
||||
"use strict";
|
||||
|
||||
/** @type {import('postcss-load-config').Config} */ __turbopack_context__.s([
|
||||
"default",
|
||||
()=>__TURBOPACK__default__export__
|
||||
]);
|
||||
const config = {
|
||||
plugins: {
|
||||
'@tailwindcss/postcss': {}
|
||||
}
|
||||
};
|
||||
const __TURBOPACK__default__export__ = config;
|
||||
}),
|
||||
"[turbopack-node]/transforms/transforms.ts [postcss] (ecmascript)", ((__turbopack_context__) => {
|
||||
"use strict";
|
||||
|
||||
/**
|
||||
* Shared utilities for our 2 transform implementations.
|
||||
*/ __turbopack_context__.s([
|
||||
"fromPath",
|
||||
()=>fromPath,
|
||||
"getReadEnvVariables",
|
||||
()=>getReadEnvVariables,
|
||||
"toPath",
|
||||
()=>toPath
|
||||
]);
|
||||
var __TURBOPACK__imported__module__$5b$externals$5d2f$path__$5b$external$5d$__$28$path$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/path [external] (path, cjs)");
|
||||
;
|
||||
const contextDir = process.cwd();
|
||||
const toPath = (file)=>{
|
||||
const relPath = (0, __TURBOPACK__imported__module__$5b$externals$5d2f$path__$5b$external$5d$__$28$path$2c$__cjs$29$__["relative"])(contextDir, file);
|
||||
if ((0, __TURBOPACK__imported__module__$5b$externals$5d2f$path__$5b$external$5d$__$28$path$2c$__cjs$29$__["isAbsolute"])(relPath)) {
|
||||
throw new Error(`Cannot depend on path (${file}) outside of root directory (${contextDir})`);
|
||||
}
|
||||
return __TURBOPACK__imported__module__$5b$externals$5d2f$path__$5b$external$5d$__$28$path$2c$__cjs$29$__["sep"] !== '/' ? relPath.replaceAll(__TURBOPACK__imported__module__$5b$externals$5d2f$path__$5b$external$5d$__$28$path$2c$__cjs$29$__["sep"], '/') : relPath;
|
||||
};
|
||||
const fromPath = (path)=>{
|
||||
return (0, __TURBOPACK__imported__module__$5b$externals$5d2f$path__$5b$external$5d$__$28$path$2c$__cjs$29$__["join"])(/* turbopackIgnore: true */ contextDir, __TURBOPACK__imported__module__$5b$externals$5d2f$path__$5b$external$5d$__$28$path$2c$__cjs$29$__["sep"] !== '/' ? path.replaceAll('/', __TURBOPACK__imported__module__$5b$externals$5d2f$path__$5b$external$5d$__$28$path$2c$__cjs$29$__["sep"]) : path);
|
||||
};
|
||||
// Patch process.env to track which env vars are read
|
||||
const originalEnv = process.env;
|
||||
const readEnvVars = new Set();
|
||||
process.env = new Proxy(originalEnv, {
|
||||
get (target, prop) {
|
||||
if (typeof prop === 'string') {
|
||||
// We register the env var as dependency on the
|
||||
// current transform and all future transforms
|
||||
// since the env var might be cached in module scope
|
||||
// and influence them all
|
||||
readEnvVars.add(prop);
|
||||
}
|
||||
return Reflect.get(target, prop);
|
||||
},
|
||||
set (target, prop, value) {
|
||||
return Reflect.set(target, prop, value);
|
||||
}
|
||||
});
|
||||
function getReadEnvVariables() {
|
||||
return Array.from(readEnvVars);
|
||||
}
|
||||
}),
|
||||
"[turbopack-node]/transforms/postcss.ts { CONFIG => \"[project]/Documents/go-new/chinese-family-tree/postcss.config.mjs [postcss] (ecmascript)\" } [postcss] (ecmascript)", ((__turbopack_context__) => {
|
||||
"use strict";
|
||||
|
||||
__turbopack_context__.s([
|
||||
"default",
|
||||
()=>transform,
|
||||
"init",
|
||||
()=>init
|
||||
]);
|
||||
// @ts-ignore
|
||||
var __TURBOPACK__imported__module__$5b$project$5d2f$Documents$2f$go$2d$new$2f$chinese$2d$family$2d$tree$2f$node_modules$2f2e$pnpm$2f$postcss$40$8$2e$5$2e$6$2f$node_modules$2f$postcss$2f$lib$2f$postcss$2e$mjs__$5b$postcss$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/Documents/go-new/chinese-family-tree/node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/postcss.mjs [postcss] (ecmascript)");
|
||||
// @ts-ignore
|
||||
var __TURBOPACK__imported__module__$5b$project$5d2f$Documents$2f$go$2d$new$2f$chinese$2d$family$2d$tree$2f$postcss$2e$config$2e$mjs__$5b$postcss$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/Documents/go-new/chinese-family-tree/postcss.config.mjs [postcss] (ecmascript)");
|
||||
var __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$transforms$2f$transforms$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[turbopack-node]/transforms/transforms.ts [postcss] (ecmascript)");
|
||||
;
|
||||
;
|
||||
;
|
||||
let processor;
|
||||
const init = async (ipc)=>{
|
||||
let config = __TURBOPACK__imported__module__$5b$project$5d2f$Documents$2f$go$2d$new$2f$chinese$2d$family$2d$tree$2f$postcss$2e$config$2e$mjs__$5b$postcss$5d$__$28$ecmascript$29$__["default"];
|
||||
if (typeof config === 'function') {
|
||||
config = await config({
|
||||
env: 'development'
|
||||
});
|
||||
}
|
||||
if (typeof config === 'undefined') {
|
||||
throw new Error('PostCSS config is undefined (make sure to export an function or object from config file)');
|
||||
}
|
||||
let plugins;
|
||||
if (Array.isArray(config.plugins)) {
|
||||
plugins = config.plugins.map((plugin)=>{
|
||||
if (Array.isArray(plugin)) {
|
||||
return plugin;
|
||||
} else if (typeof plugin === 'string') {
|
||||
return [
|
||||
plugin,
|
||||
{}
|
||||
];
|
||||
} else {
|
||||
return plugin;
|
||||
}
|
||||
});
|
||||
} else if (typeof config.plugins === 'object') {
|
||||
plugins = Object.entries(config.plugins).filter(([, options])=>options);
|
||||
} else {
|
||||
plugins = [];
|
||||
}
|
||||
const loadedPlugins = plugins.map((plugin)=>{
|
||||
if (Array.isArray(plugin)) {
|
||||
const [arg, options] = plugin;
|
||||
let pluginFactory = arg;
|
||||
if (typeof pluginFactory === 'string') {
|
||||
pluginFactory = require(/* turbopackIgnore: true */ pluginFactory);
|
||||
}
|
||||
if (pluginFactory.default) {
|
||||
pluginFactory = pluginFactory.default;
|
||||
}
|
||||
return pluginFactory(options);
|
||||
}
|
||||
return plugin;
|
||||
});
|
||||
processor = (0, __TURBOPACK__imported__module__$5b$project$5d2f$Documents$2f$go$2d$new$2f$chinese$2d$family$2d$tree$2f$node_modules$2f2e$pnpm$2f$postcss$40$8$2e$5$2e$6$2f$node_modules$2f$postcss$2f$lib$2f$postcss$2e$mjs__$5b$postcss$5d$__$28$ecmascript$29$__["default"])(loadedPlugins);
|
||||
};
|
||||
async function transform(ipc, cssContent, name, sourceMap) {
|
||||
const { css, map, messages } = await processor.process(cssContent, {
|
||||
from: name,
|
||||
to: name,
|
||||
map: sourceMap ? {
|
||||
inline: false,
|
||||
annotation: false
|
||||
} : undefined
|
||||
});
|
||||
const assets = [];
|
||||
const filePaths = [];
|
||||
const buildFilePaths = [];
|
||||
const directories = [];
|
||||
for (const msg of messages){
|
||||
switch(msg.type){
|
||||
case 'asset':
|
||||
assets.push({
|
||||
file: msg.file,
|
||||
content: msg.content,
|
||||
sourceMap: !sourceMap ? undefined : typeof msg.sourceMap === 'string' ? msg.sourceMap : JSON.stringify(msg.sourceMap)
|
||||
});
|
||||
break;
|
||||
case 'dependency':
|
||||
case 'missing-dependency':
|
||||
filePaths.push((0, __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$transforms$2f$transforms$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__["toPath"])(msg.file));
|
||||
break;
|
||||
case 'build-dependency':
|
||||
buildFilePaths.push((0, __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$transforms$2f$transforms$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__["toPath"])(msg.file));
|
||||
break;
|
||||
case 'dir-dependency':
|
||||
directories.push([
|
||||
(0, __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$transforms$2f$transforms$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__["toPath"])(msg.dir),
|
||||
msg.glob
|
||||
]);
|
||||
break;
|
||||
case 'context-dependency':
|
||||
directories.push([
|
||||
(0, __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$transforms$2f$transforms$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__["toPath"])(msg.dir),
|
||||
'**'
|
||||
]);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
ipc.sendInfo({
|
||||
type: 'dependencies',
|
||||
filePaths,
|
||||
directories,
|
||||
buildFilePaths,
|
||||
envVariables: (0, __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$transforms$2f$transforms$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__["getReadEnvVariables"])()
|
||||
});
|
||||
return {
|
||||
css,
|
||||
map: sourceMap ? JSON.stringify(map) : undefined,
|
||||
assets
|
||||
};
|
||||
}
|
||||
}),
|
||||
];
|
||||
|
||||
//# sourceMappingURL=%5Broot-of-the-server%5D__30c99858._.js.map
|
||||
File diff suppressed because one or more lines are too long
@@ -1,500 +0,0 @@
|
||||
module.exports = [
|
||||
"[turbopack-node]/globals.ts [postcss] (ecmascript)", ((__turbopack_context__, module, exports) => {
|
||||
|
||||
// @ts-ignore
|
||||
process.turbopack = {};
|
||||
}),
|
||||
"[externals]/node:net [external] (node:net, cjs)", ((__turbopack_context__, module, exports) => {
|
||||
|
||||
const mod = __turbopack_context__.x("node:net", () => require("node:net"));
|
||||
|
||||
module.exports = mod;
|
||||
}),
|
||||
"[externals]/node:stream [external] (node:stream, cjs)", ((__turbopack_context__, module, exports) => {
|
||||
|
||||
const mod = __turbopack_context__.x("node:stream", () => require("node:stream"));
|
||||
|
||||
module.exports = mod;
|
||||
}),
|
||||
"[turbopack-node]/compiled/stacktrace-parser/index.js [postcss] (ecmascript)", ((__turbopack_context__) => {
|
||||
"use strict";
|
||||
|
||||
__turbopack_context__.s([
|
||||
"parse",
|
||||
()=>parse
|
||||
]);
|
||||
if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/compiled/stacktrace-parser") + "/";
|
||||
var n = "<unknown>";
|
||||
function parse(e) {
|
||||
var r = e.split("\n");
|
||||
return r.reduce(function(e, r) {
|
||||
var n = parseChrome(r) || parseWinjs(r) || parseGecko(r) || parseNode(r) || parseJSC(r);
|
||||
if (n) {
|
||||
e.push(n);
|
||||
}
|
||||
return e;
|
||||
}, []);
|
||||
}
|
||||
var a = /^\s*at (.*?) ?\(((?:file|https?|blob|chrome-extension|native|eval|webpack|<anonymous>|\/|[a-z]:\\|\\\\).*?)(?::(\d+))?(?::(\d+))?\)?\s*$/i;
|
||||
var l = /\((\S*)(?::(\d+))(?::(\d+))\)/;
|
||||
function parseChrome(e) {
|
||||
var r = a.exec(e);
|
||||
if (!r) {
|
||||
return null;
|
||||
}
|
||||
var u = r[2] && r[2].indexOf("native") === 0;
|
||||
var t = r[2] && r[2].indexOf("eval") === 0;
|
||||
var i = l.exec(r[2]);
|
||||
if (t && i != null) {
|
||||
r[2] = i[1];
|
||||
r[3] = i[2];
|
||||
r[4] = i[3];
|
||||
}
|
||||
return {
|
||||
file: !u ? r[2] : null,
|
||||
methodName: r[1] || n,
|
||||
arguments: u ? [
|
||||
r[2]
|
||||
] : [],
|
||||
lineNumber: r[3] ? +r[3] : null,
|
||||
column: r[4] ? +r[4] : null
|
||||
};
|
||||
}
|
||||
var u = /^\s*at (?:((?:\[object object\])?.+) )?\(?((?:file|ms-appx|https?|webpack|blob):.*?):(\d+)(?::(\d+))?\)?\s*$/i;
|
||||
function parseWinjs(e) {
|
||||
var r = u.exec(e);
|
||||
if (!r) {
|
||||
return null;
|
||||
}
|
||||
return {
|
||||
file: r[2],
|
||||
methodName: r[1] || n,
|
||||
arguments: [],
|
||||
lineNumber: +r[3],
|
||||
column: r[4] ? +r[4] : null
|
||||
};
|
||||
}
|
||||
var t = /^\s*(.*?)(?:\((.*?)\))?(?:^|@)((?:file|https?|blob|chrome|webpack|resource|\[native).*?|[^@]*bundle)(?::(\d+))?(?::(\d+))?\s*$/i;
|
||||
var i = /(\S+) line (\d+)(?: > eval line \d+)* > eval/i;
|
||||
function parseGecko(e) {
|
||||
var r = t.exec(e);
|
||||
if (!r) {
|
||||
return null;
|
||||
}
|
||||
var a = r[3] && r[3].indexOf(" > eval") > -1;
|
||||
var l = i.exec(r[3]);
|
||||
if (a && l != null) {
|
||||
r[3] = l[1];
|
||||
r[4] = l[2];
|
||||
r[5] = null;
|
||||
}
|
||||
return {
|
||||
file: r[3],
|
||||
methodName: r[1] || n,
|
||||
arguments: r[2] ? r[2].split(",") : [],
|
||||
lineNumber: r[4] ? +r[4] : null,
|
||||
column: r[5] ? +r[5] : null
|
||||
};
|
||||
}
|
||||
var s = /^\s*(?:([^@]*)(?:\((.*?)\))?@)?(\S.*?):(\d+)(?::(\d+))?\s*$/i;
|
||||
function parseJSC(e) {
|
||||
var r = s.exec(e);
|
||||
if (!r) {
|
||||
return null;
|
||||
}
|
||||
return {
|
||||
file: r[3],
|
||||
methodName: r[1] || n,
|
||||
arguments: [],
|
||||
lineNumber: +r[4],
|
||||
column: r[5] ? +r[5] : null
|
||||
};
|
||||
}
|
||||
var o = /^\s*at (?:((?:\[object object\])?[^\\/]+(?: \[as \S+\])?) )?\(?(.*?):(\d+)(?::(\d+))?\)?\s*$/i;
|
||||
function parseNode(e) {
|
||||
var r = o.exec(e);
|
||||
if (!r) {
|
||||
return null;
|
||||
}
|
||||
return {
|
||||
file: r[2],
|
||||
methodName: r[1] || n,
|
||||
arguments: [],
|
||||
lineNumber: +r[3],
|
||||
column: r[4] ? +r[4] : null
|
||||
};
|
||||
}
|
||||
}),
|
||||
"[turbopack-node]/ipc/error.ts [postcss] (ecmascript)", ((__turbopack_context__) => {
|
||||
"use strict";
|
||||
|
||||
// merged from next.js
|
||||
// https://github.com/vercel/next.js/blob/e657741b9908cf0044aaef959c0c4defb19ed6d8/packages/next/src/lib/is-error.ts
|
||||
// https://github.com/vercel/next.js/blob/e657741b9908cf0044aaef959c0c4defb19ed6d8/packages/next/src/shared/lib/is-plain-object.ts
|
||||
__turbopack_context__.s([
|
||||
"default",
|
||||
()=>isError,
|
||||
"getProperError",
|
||||
()=>getProperError
|
||||
]);
|
||||
function isError(err) {
|
||||
return typeof err === 'object' && err !== null && 'name' in err && 'message' in err;
|
||||
}
|
||||
function getProperError(err) {
|
||||
if (isError(err)) {
|
||||
return err;
|
||||
}
|
||||
if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable
|
||||
;
|
||||
return new Error(isPlainObject(err) ? JSON.stringify(err) : err + '');
|
||||
}
|
||||
function getObjectClassLabel(value) {
|
||||
return Object.prototype.toString.call(value);
|
||||
}
|
||||
function isPlainObject(value) {
|
||||
if (getObjectClassLabel(value) !== '[object Object]') {
|
||||
return false;
|
||||
}
|
||||
const prototype = Object.getPrototypeOf(value);
|
||||
/**
|
||||
* this used to be previously:
|
||||
*
|
||||
* `return prototype === null || prototype === Object.prototype`
|
||||
*
|
||||
* but Edge Runtime expose Object from vm, being that kind of type-checking wrongly fail.
|
||||
*
|
||||
* It was changed to the current implementation since it's resilient to serialization.
|
||||
*/ return prototype === null || prototype.hasOwnProperty('isPrototypeOf');
|
||||
}
|
||||
}),
|
||||
"[turbopack-node]/ipc/index.ts [postcss] (ecmascript)", ((__turbopack_context__) => {
|
||||
"use strict";
|
||||
|
||||
__turbopack_context__.s([
|
||||
"IPC",
|
||||
()=>IPC,
|
||||
"structuredError",
|
||||
()=>structuredError
|
||||
]);
|
||||
var __TURBOPACK__imported__module__$5b$externals$5d2f$node$3a$net__$5b$external$5d$__$28$node$3a$net$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/node:net [external] (node:net, cjs)");
|
||||
var __TURBOPACK__imported__module__$5b$externals$5d2f$node$3a$stream__$5b$external$5d$__$28$node$3a$stream$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/node:stream [external] (node:stream, cjs)");
|
||||
var __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$compiled$2f$stacktrace$2d$parser$2f$index$2e$js__$5b$postcss$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[turbopack-node]/compiled/stacktrace-parser/index.js [postcss] (ecmascript)");
|
||||
var __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$ipc$2f$error$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[turbopack-node]/ipc/error.ts [postcss] (ecmascript)");
|
||||
;
|
||||
;
|
||||
;
|
||||
;
|
||||
function structuredError(e) {
|
||||
e = (0, __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$ipc$2f$error$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__["getProperError"])(e);
|
||||
return {
|
||||
name: e.name,
|
||||
message: e.message,
|
||||
stack: typeof e.stack === 'string' ? (0, __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$compiled$2f$stacktrace$2d$parser$2f$index$2e$js__$5b$postcss$5d$__$28$ecmascript$29$__["parse"])(e.stack) : [],
|
||||
cause: e.cause ? structuredError((0, __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$ipc$2f$error$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__["getProperError"])(e.cause)) : undefined
|
||||
};
|
||||
}
|
||||
function createIpc(port) {
|
||||
const socket = (0, __TURBOPACK__imported__module__$5b$externals$5d2f$node$3a$net__$5b$external$5d$__$28$node$3a$net$2c$__cjs$29$__["createConnection"])({
|
||||
port,
|
||||
host: '127.0.0.1'
|
||||
});
|
||||
/**
|
||||
* A writable stream that writes to the socket.
|
||||
* We don't write directly to the socket because we need to
|
||||
* handle backpressure and wait for the socket to be drained
|
||||
* before writing more data.
|
||||
*/ const socketWritable = new __TURBOPACK__imported__module__$5b$externals$5d2f$node$3a$stream__$5b$external$5d$__$28$node$3a$stream$2c$__cjs$29$__["Writable"]({
|
||||
write (chunk, _enc, cb) {
|
||||
if (socket.write(chunk)) {
|
||||
cb();
|
||||
} else {
|
||||
socket.once('drain', cb);
|
||||
}
|
||||
},
|
||||
final (cb) {
|
||||
socket.end(cb);
|
||||
}
|
||||
});
|
||||
const packetQueue = [];
|
||||
const recvPromiseResolveQueue = [];
|
||||
function pushPacket(packet) {
|
||||
const recvPromiseResolve = recvPromiseResolveQueue.shift();
|
||||
if (recvPromiseResolve != null) {
|
||||
recvPromiseResolve(JSON.parse(packet.toString('utf8')));
|
||||
} else {
|
||||
packetQueue.push(packet);
|
||||
}
|
||||
}
|
||||
let state = {
|
||||
type: 'waiting'
|
||||
};
|
||||
let buffer = Buffer.alloc(0);
|
||||
socket.once('connect', ()=>{
|
||||
socket.setNoDelay(true);
|
||||
socket.on('data', (chunk)=>{
|
||||
buffer = Buffer.concat([
|
||||
buffer,
|
||||
chunk
|
||||
]);
|
||||
loop: while(true){
|
||||
switch(state.type){
|
||||
case 'waiting':
|
||||
{
|
||||
if (buffer.length >= 4) {
|
||||
const length = buffer.readUInt32BE(0);
|
||||
buffer = buffer.subarray(4);
|
||||
state = {
|
||||
type: 'packet',
|
||||
length
|
||||
};
|
||||
} else {
|
||||
break loop;
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 'packet':
|
||||
{
|
||||
if (buffer.length >= state.length) {
|
||||
const packet = buffer.subarray(0, state.length);
|
||||
buffer = buffer.subarray(state.length);
|
||||
state = {
|
||||
type: 'waiting'
|
||||
};
|
||||
pushPacket(packet);
|
||||
} else {
|
||||
break loop;
|
||||
}
|
||||
break;
|
||||
}
|
||||
default:
|
||||
invariant(state, (state)=>`Unknown state type: ${state?.type}`);
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
// When the socket is closed, this process is no longer needed.
|
||||
// This might happen e. g. when parent process is killed or
|
||||
// node.js pool is garbage collected.
|
||||
socket.once('close', ()=>{
|
||||
process.exit(0);
|
||||
});
|
||||
// TODO(lukesandberg): some of the messages being sent are very large and contain lots
|
||||
// of redundant information. Consider adding gzip compression to our stream.
|
||||
function doSend(message) {
|
||||
return new Promise((resolve, reject)=>{
|
||||
// Reserve 4 bytes for our length prefix, we will over-write after encoding.
|
||||
const packet = Buffer.from('0000' + message, 'utf8');
|
||||
packet.writeUInt32BE(packet.length - 4, 0);
|
||||
socketWritable.write(packet, (err)=>{
|
||||
process.stderr.write(`TURBOPACK_OUTPUT_D\n`);
|
||||
process.stdout.write(`TURBOPACK_OUTPUT_D\n`);
|
||||
if (err != null) {
|
||||
reject(err);
|
||||
} else {
|
||||
resolve();
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
function send(message) {
|
||||
return doSend(JSON.stringify(message));
|
||||
}
|
||||
function sendReady() {
|
||||
return doSend('');
|
||||
}
|
||||
return {
|
||||
async recv () {
|
||||
const packet = packetQueue.shift();
|
||||
if (packet != null) {
|
||||
return JSON.parse(packet.toString('utf8'));
|
||||
}
|
||||
const result = await new Promise((resolve)=>{
|
||||
recvPromiseResolveQueue.push((result)=>{
|
||||
resolve(result);
|
||||
});
|
||||
});
|
||||
return result;
|
||||
},
|
||||
send (message) {
|
||||
return send(message);
|
||||
},
|
||||
sendReady,
|
||||
async sendError (error) {
|
||||
let failed = false;
|
||||
try {
|
||||
await send({
|
||||
type: 'error',
|
||||
...structuredError(error)
|
||||
});
|
||||
} catch (err) {
|
||||
// There's nothing we can do about errors that happen after this point, we can't tell anyone
|
||||
// about them.
|
||||
console.error('failed to send error back to rust:', err);
|
||||
failed = true;
|
||||
}
|
||||
await new Promise((res)=>socket.end(()=>res()));
|
||||
process.exit(failed ? 1 : 0);
|
||||
}
|
||||
};
|
||||
}
|
||||
const PORT = process.argv[2];
|
||||
const IPC = createIpc(parseInt(PORT, 10));
|
||||
process.on('uncaughtException', (err)=>{
|
||||
IPC.sendError(err);
|
||||
});
|
||||
const improveConsole = (name, stream, addStack)=>{
|
||||
// @ts-ignore
|
||||
const original = console[name];
|
||||
// @ts-ignore
|
||||
const stdio = process[stream];
|
||||
// @ts-ignore
|
||||
console[name] = (...args)=>{
|
||||
stdio.write(`TURBOPACK_OUTPUT_B\n`);
|
||||
original(...args);
|
||||
if (addStack) {
|
||||
const stack = new Error().stack?.replace(/^.+\n.+\n/, '') + '\n';
|
||||
stdio.write('TURBOPACK_OUTPUT_S\n');
|
||||
stdio.write(stack);
|
||||
}
|
||||
stdio.write('TURBOPACK_OUTPUT_E\n');
|
||||
};
|
||||
};
|
||||
improveConsole('error', 'stderr', true);
|
||||
improveConsole('warn', 'stderr', true);
|
||||
improveConsole('count', 'stdout', true);
|
||||
improveConsole('trace', 'stderr', false);
|
||||
improveConsole('log', 'stdout', true);
|
||||
improveConsole('group', 'stdout', true);
|
||||
improveConsole('groupCollapsed', 'stdout', true);
|
||||
improveConsole('table', 'stdout', true);
|
||||
improveConsole('debug', 'stdout', true);
|
||||
improveConsole('info', 'stdout', true);
|
||||
improveConsole('dir', 'stdout', true);
|
||||
improveConsole('dirxml', 'stdout', true);
|
||||
improveConsole('timeEnd', 'stdout', true);
|
||||
improveConsole('timeLog', 'stdout', true);
|
||||
improveConsole('timeStamp', 'stdout', true);
|
||||
improveConsole('assert', 'stderr', true);
|
||||
/**
|
||||
* Utility function to ensure all variants of an enum are handled.
|
||||
*/ function invariant(never, computeMessage) {
|
||||
throw new Error(`Invariant: ${computeMessage(never)}`);
|
||||
}
|
||||
}),
|
||||
"[turbopack-node]/ipc/evaluate.ts [postcss] (ecmascript)", ((__turbopack_context__) => {
|
||||
"use strict";
|
||||
|
||||
__turbopack_context__.s([
|
||||
"run",
|
||||
()=>run
|
||||
]);
|
||||
var __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$ipc$2f$index$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[turbopack-node]/ipc/index.ts [postcss] (ecmascript)");
|
||||
;
|
||||
const ipc = __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$ipc$2f$index$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__["IPC"];
|
||||
const queue = [];
|
||||
const run = async (moduleFactory)=>{
|
||||
let nextId = 1;
|
||||
const requests = new Map();
|
||||
const internalIpc = {
|
||||
sendInfo: (message)=>ipc.send({
|
||||
type: 'info',
|
||||
data: message
|
||||
}),
|
||||
sendRequest: (message)=>{
|
||||
const id = nextId++;
|
||||
let resolve, reject;
|
||||
const promise = new Promise((res, rej)=>{
|
||||
resolve = res;
|
||||
reject = rej;
|
||||
});
|
||||
requests.set(id, {
|
||||
resolve,
|
||||
reject
|
||||
});
|
||||
return ipc.send({
|
||||
type: 'request',
|
||||
id,
|
||||
data: message
|
||||
}).then(()=>promise);
|
||||
},
|
||||
sendError: (error)=>{
|
||||
return ipc.sendError(error);
|
||||
}
|
||||
};
|
||||
// Initialize module and send ready message
|
||||
let getValue;
|
||||
try {
|
||||
const module = await moduleFactory();
|
||||
if (typeof module.init === 'function') {
|
||||
await module.init();
|
||||
}
|
||||
getValue = module.default;
|
||||
await ipc.sendReady();
|
||||
} catch (err) {
|
||||
await ipc.sendReady();
|
||||
await ipc.sendError(err);
|
||||
}
|
||||
// Queue handling
|
||||
let isRunning = false;
|
||||
const run = async ()=>{
|
||||
while(queue.length > 0){
|
||||
const args = queue.shift();
|
||||
try {
|
||||
const value = await getValue(internalIpc, ...args);
|
||||
await ipc.send({
|
||||
type: 'end',
|
||||
data: value === undefined ? undefined : JSON.stringify(value, null, 2),
|
||||
duration: 0
|
||||
});
|
||||
} catch (e) {
|
||||
await ipc.sendError(e);
|
||||
}
|
||||
}
|
||||
isRunning = false;
|
||||
};
|
||||
// Communication handling
|
||||
while(true){
|
||||
const msg = await ipc.recv();
|
||||
switch(msg.type){
|
||||
case 'evaluate':
|
||||
{
|
||||
queue.push(msg.args);
|
||||
if (!isRunning) {
|
||||
isRunning = true;
|
||||
run();
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 'result':
|
||||
{
|
||||
const request = requests.get(msg.id);
|
||||
if (request) {
|
||||
requests.delete(msg.id);
|
||||
if (msg.error) {
|
||||
request.reject(new Error(msg.error));
|
||||
} else {
|
||||
request.resolve(msg.data);
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
default:
|
||||
{
|
||||
console.error('unexpected message type', msg.type);
|
||||
process.exit(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
}),
|
||||
"[turbopack-node]/ipc/evaluate.ts/evaluate.js { INNER => \"[turbopack-node]/transforms/postcss.ts { CONFIG => \\\"[project]/Documents/go-new/chinese-family-tree/postcss.config.mjs [postcss] (ecmascript)\\\" } [postcss] (ecmascript)\", RUNTIME => \"[turbopack-node]/ipc/evaluate.ts [postcss] (ecmascript)\" } [postcss] (ecmascript)", ((__turbopack_context__) => {
|
||||
"use strict";
|
||||
|
||||
__turbopack_context__.s([]);
|
||||
var __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$ipc$2f$evaluate$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[turbopack-node]/ipc/evaluate.ts [postcss] (ecmascript)");
|
||||
;
|
||||
(0, __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$ipc$2f$evaluate$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__["run"])(()=>__turbopack_context__.A('[turbopack-node]/transforms/postcss.ts { CONFIG => "[project]/Documents/go-new/chinese-family-tree/postcss.config.mjs [postcss] (ecmascript)" } [postcss] (ecmascript, async loader)'));
|
||||
}),
|
||||
];
|
||||
|
||||
//# sourceMappingURL=%5Broot-of-the-server%5D__b44e5d07._.js.map
|
||||
File diff suppressed because one or more lines are too long
@@ -1,13 +0,0 @@
|
||||
module.exports = [
|
||||
"[turbopack-node]/transforms/postcss.ts { CONFIG => \"[project]/Documents/go-new/chinese-family-tree/postcss.config.mjs [postcss] (ecmascript)\" } [postcss] (ecmascript, async loader)", ((__turbopack_context__) => {
|
||||
|
||||
__turbopack_context__.v((parentImport) => {
|
||||
return Promise.all([
|
||||
"chunks/a0629__pnpm_f434751e._.js",
|
||||
"chunks/[root-of-the-server]__30c99858._.js"
|
||||
].map((chunk) => __turbopack_context__.l(chunk))).then(() => {
|
||||
return parentImport("[turbopack-node]/transforms/postcss.ts { CONFIG => \"[project]/Documents/go-new/chinese-family-tree/postcss.config.mjs [postcss] (ecmascript)\" } [postcss] (ecmascript)");
|
||||
});
|
||||
});
|
||||
}),
|
||||
];
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"version": 3,
|
||||
"sources": [],
|
||||
"sections": []
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@@ -1,6 +1,6 @@
|
||||
var R=require("./chunks/[turbopack]_runtime.js")("postcss.js")
|
||||
R.c("chunks/[turbopack-node]_transforms_postcss_ts_b8ef3b2b._.js")
|
||||
R.c("chunks/[root-of-the-server]__b44e5d07._.js")
|
||||
R.c("chunks/[turbopack-node]_transforms_postcss_ts_09647b59._.js")
|
||||
R.c("chunks/[root-of-the-server]__c21d72ee._.js")
|
||||
R.m("[turbopack-node]/globals.ts [postcss] (ecmascript)")
|
||||
R.m("[turbopack-node]/ipc/evaluate.ts/evaluate.js { INNER => \"[turbopack-node]/transforms/postcss.ts { CONFIG => \\\"[project]/Documents/go-new/chinese-family-tree/postcss.config.mjs [postcss] (ecmascript)\\\" } [postcss] (ecmascript)\", RUNTIME => \"[turbopack-node]/ipc/evaluate.ts [postcss] (ecmascript)\" } [postcss] (ecmascript)")
|
||||
module.exports=R.m("[turbopack-node]/ipc/evaluate.ts/evaluate.js { INNER => \"[turbopack-node]/transforms/postcss.ts { CONFIG => \\\"[project]/Documents/go-new/chinese-family-tree/postcss.config.mjs [postcss] (ecmascript)\\\" } [postcss] (ecmascript)\", RUNTIME => \"[turbopack-node]/ipc/evaluate.ts [postcss] (ecmascript)\" } [postcss] (ecmascript)").exports
|
||||
R.m("[turbopack-node]/ipc/evaluate.ts/evaluate.js { INNER => \"[turbopack-node]/transforms/postcss.ts { CONFIG => \\\"[project]/Documents/go-new/chinese-family-tree-2/postcss.config.mjs [postcss] (ecmascript)\\\" } [postcss] (ecmascript)\", RUNTIME => \"[turbopack-node]/ipc/evaluate.ts [postcss] (ecmascript)\" } [postcss] (ecmascript)")
|
||||
module.exports=R.m("[turbopack-node]/ipc/evaluate.ts/evaluate.js { INNER => \"[turbopack-node]/transforms/postcss.ts { CONFIG => \\\"[project]/Documents/go-new/chinese-family-tree-2/postcss.config.mjs [postcss] (ecmascript)\\\" } [postcss] (ecmascript)\", RUNTIME => \"[turbopack-node]/ipc/evaluate.ts [postcss] (ecmascript)\" } [postcss] (ecmascript)").exports
|
||||
|
||||
Vendored
+1
-1
@@ -1 +1 @@
|
||||
{"previewModeId":"df0c28f6c249467c561bc25e71689e7b","previewModeSigningKey":"bddde3c40ce4638d09f7c56a3fdc83d02d52e600bb0f92baf908b211a6018a78","previewModeEncryptionKey":"62ff57dff349baabcb1e8057b174f631546df3df3b71c273c8ff524d273a650b","expireAt":1765690745124}
|
||||
{"previewModeId":"ea7964c16eec6c9ee4e299f204a0ff70","previewModeSigningKey":"24de15c8709760f9e1f34f9fb8ddc539fe8105942633a3ae0c27984834add664","previewModeEncryptionKey":"a70f83da5fcf69c6b304251087bcb6325dc800254eddd4006a8884b2f2c6d7b2","expireAt":1767499210188}
|
||||
Vendored
+1
-1
@@ -1 +1 @@
|
||||
{"encryption.key":"vb0BvbCrWI5Uknxu5mz5ngYKzYPue+9+OY1SB0ojj2Q=","encryption.expire_at":1765690745112}
|
||||
{"encryption.key":"Km6ocjWH8+67quJFu62HB8kYa21Nj6aOU+U5It/qg4A=","encryption.expire_at":1767499210177}
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -5,8 +5,8 @@
|
||||
"devFiles": [],
|
||||
"polyfillFiles": [],
|
||||
"lowPriorityFiles": [
|
||||
"static/WbYR2XE95Gc5XXVQ7W0XS/_ssgManifest.js",
|
||||
"static/WbYR2XE95Gc5XXVQ7W0XS/_buildManifest.js"
|
||||
"static/NAO-lsKimvD1dA_Uih5A8/_ssgManifest.js",
|
||||
"static/NAO-lsKimvD1dA_Uih5A8/_buildManifest.js"
|
||||
],
|
||||
"rootMainFiles": []
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
@@ -356,8 +356,8 @@
|
||||
"dynamicRoutes": {},
|
||||
"notFoundRoutes": [],
|
||||
"preview": {
|
||||
"previewModeId": "df0c28f6c249467c561bc25e71689e7b",
|
||||
"previewModeSigningKey": "bddde3c40ce4638d09f7c56a3fdc83d02d52e600bb0f92baf908b211a6018a78",
|
||||
"previewModeEncryptionKey": "62ff57dff349baabcb1e8057b174f631546df3df3b71c273c8ff524d273a650b"
|
||||
"previewModeId": "ea7964c16eec6c9ee4e299f204a0ff70",
|
||||
"previewModeSigningKey": "24de15c8709760f9e1f34f9fb8ddc539fe8105942633a3ae0c27984834add664",
|
||||
"previewModeEncryptionKey": "a70f83da5fcf69c6b304251087bcb6325dc800254eddd4006a8884b2f2c6d7b2"
|
||||
}
|
||||
}
|
||||
@@ -168,7 +168,7 @@
|
||||
"proxyPrefetch": "flexible",
|
||||
"optimisticClientCache": true,
|
||||
"manualClientBasePath": false,
|
||||
"cpus": 9,
|
||||
"cpus": 15,
|
||||
"memoryBasedWorkersCount": false,
|
||||
"imgOptConcurrency": null,
|
||||
"imgOptTimeoutInSeconds": 7,
|
||||
@@ -307,8 +307,8 @@
|
||||
},
|
||||
"distDirRoot": ".next"
|
||||
},
|
||||
"appDir": "/Users/freedak/Documents/go-new/chinese-family-tree",
|
||||
"relativeAppDir": "Documents/go-new/chinese-family-tree",
|
||||
"appDir": "/Users/freedak/Documents/go-new/chinese-family-tree-2",
|
||||
"relativeAppDir": "Documents/go-new/chinese-family-tree-2",
|
||||
"files": [
|
||||
".next/routes-manifest.json",
|
||||
".next/server/pages-manifest.json",
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
<!DOCTYPE html><!--WbYR2XE95Gc5XXVQ7W0XS--><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/c6c183fbdeff129e.js"/><script src="/_next/static/chunks/3af7c987a6c28caf.js" async=""></script><script src="/_next/static/chunks/9e02b7100d6e6270.js" async=""></script><script src="/_next/static/chunks/0eaa8682593f715a.js" async=""></script><script src="/_next/static/chunks/ca4429dea6d39825.js" async=""></script><script src="/_next/static/chunks/turbopack-23d2945b770f49d2.js" async=""></script><script src="/_next/static/chunks/8f17d8759a6e1b46.js" async=""></script><script src="/_next/static/chunks/b5f12f01a94627ac.js" async=""></script><meta name="next-size-adjust" content=""/><title>500: Internal Server Error.</title><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/c6c183fbdeff129e.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[66163,[\"/_next/static/chunks/8f17d8759a6e1b46.js\",\"/_next/static/chunks/b5f12f01a94627ac.js\"],\"default\"]\n3:I[65586,[\"/_next/static/chunks/8f17d8759a6e1b46.js\",\"/_next/static/chunks/b5f12f01a94627ac.js\"],\"default\"]\n4:I[98364,[\"/_next/static/chunks/8f17d8759a6e1b46.js\",\"/_next/static/chunks/b5f12f01a94627ac.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[98364,[\"/_next/static/chunks/8f17d8759a6e1b46.js\",\"/_next/static/chunks/b5f12f01a94627ac.js\"],\"ViewportBoundary\"]\n9:I[98364,[\"/_next/static/chunks/8f17d8759a6e1b46.js\",\"/_next/static/chunks/b5f12f01a94627ac.js\"],\"MetadataBoundary\"]\nb:I[95067,[\"/_next/static/chunks/8f17d8759a6e1b46.js\",\"/_next/static/chunks/b5f12f01a94627ac.js\"],\"default\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"WbYR2XE95Gc5XXVQ7W0XS\",\"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.\"}]}]]}]}]}]]}],[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/8f17d8759a6e1b46.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/b5f12f01a94627ac.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L7\",null,{\"children\":\"$@8\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$@a\"}]}]}],[\"$\",\"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,"a:[]\n6:null\n"])</script></body></html>
|
||||
<!DOCTYPE html><!--NAO_lsKimvD1dA_Uih5A8--><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/fca12c8710bac04f.js"/><script src="/_next/static/chunks/00501d8005072065.js" async=""></script><script src="/_next/static/chunks/dae599f36ada12e5.js" async=""></script><script src="/_next/static/chunks/c8d8a9d45df7b3b4.js" async=""></script><script src="/_next/static/chunks/e8bd79bd269e9b4f.js" async=""></script><script src="/_next/static/chunks/turbopack-1482dc2f7aa839a8.js" async=""></script><script src="/_next/static/chunks/2cce29c82e2b8fb0.js" async=""></script><script src="/_next/static/chunks/3acbe26d2665d2b1.js" async=""></script><meta name="next-size-adjust" content=""/><title>500: Internal Server Error.</title><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/fca12c8710bac04f.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[51816,[\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"/_next/static/chunks/3acbe26d2665d2b1.js\"],\"default\"]\n3:I[61240,[\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"/_next/static/chunks/3acbe26d2665d2b1.js\"],\"default\"]\n4:I[91865,[\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"/_next/static/chunks/3acbe26d2665d2b1.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[91865,[\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"/_next/static/chunks/3acbe26d2665d2b1.js\"],\"ViewportBoundary\"]\n9:I[91865,[\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"/_next/static/chunks/3acbe26d2665d2b1.js\"],\"MetadataBoundary\"]\nb:I[55065,[\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"/_next/static/chunks/3acbe26d2665d2b1.js\"],\"default\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"NAO-lsKimvD1dA_Uih5A8\",\"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.\"}]}]]}]}]}]]}],[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/3acbe26d2665d2b1.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L7\",null,{\"children\":\"$@8\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$@a\"}]}]}],[\"$\",\"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,"a:[]\n6:null\n"])</script></body></html>
|
||||
@@ -1,12 +1,12 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[66163,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
3:I[65586,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
4:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"OutletBoundary"]
|
||||
2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
4:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
|
||||
5:"$Sreact.suspense"
|
||||
7:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"ViewportBoundary"]
|
||||
9:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"MetadataBoundary"]
|
||||
b:I[95067,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
0:{"P":null,"b":"WbYR2XE95Gc5XXVQ7W0XS","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."}]}]]}]}]}]]}],[["$","script","script-0",{"src":"/_next/static/chunks/8f17d8759a6e1b46.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/b5f12f01a94627ac.js","async":true,"nonce":"$undefined"}]],["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L7",null,{"children":"$@8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@a"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
|
||||
7:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
|
||||
9:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
|
||||
b:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
0:{"P":null,"b":"NAO-lsKimvD1dA_Uih5A8","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."}]}]]}]}]}]]}],[["$","script","script-0",{"src":"/_next/static/chunks/2cce29c82e2b8fb0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3acbe26d2665d2b1.js","async":true,"nonce":"$undefined"}]],["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L7",null,{"children":"$@8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@a"}]}]}],["$","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"}]]
|
||||
a:[]
|
||||
6:null
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"OutletBoundary"]
|
||||
2:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
|
||||
3:"$Sreact.suspense"
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","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."}]}]]}]}]}]]}],[["$","script","script-0",{"src":"/_next/static/chunks/8f17d8759a6e1b46.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/b5f12f01a94627ac.js","async":true}]],["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","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."}]}]]}]}]}]]}],[["$","script","script-0",{"src":"/_next/static/chunks/2cce29c82e2b8fb0.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3acbe26d2665d2b1.js","async":true}]],["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false}
|
||||
4:null
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[66163,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
3:I[65586,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
4:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"OutletBoundary"]
|
||||
2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
4:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
|
||||
5:"$Sreact.suspense"
|
||||
7:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"ViewportBoundary"]
|
||||
9:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"MetadataBoundary"]
|
||||
b:I[95067,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
0:{"P":null,"b":"WbYR2XE95Gc5XXVQ7W0XS","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."}]}]]}]}]}]]}],[["$","script","script-0",{"src":"/_next/static/chunks/8f17d8759a6e1b46.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/b5f12f01a94627ac.js","async":true,"nonce":"$undefined"}]],["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L7",null,{"children":"$@8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@a"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
|
||||
7:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
|
||||
9:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
|
||||
b:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
0:{"P":null,"b":"NAO-lsKimvD1dA_Uih5A8","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."}]}]]}]}]}]]}],[["$","script","script-0",{"src":"/_next/static/chunks/2cce29c82e2b8fb0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3acbe26d2665d2b1.js","async":true,"nonce":"$undefined"}]],["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L7",null,{"children":"$@8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@a"}]}]}],["$","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"}]]
|
||||
a:[]
|
||||
6:null
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"ViewportBoundary"]
|
||||
4:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"MetadataBoundary"]
|
||||
2:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
|
||||
4:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
|
||||
5:"$Sreact.suspense"
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
|
||||
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
6:[]
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[66163,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
3:I[65586,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1 +1 @@
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","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:{"buildId":"NAO-lsKimvD1dA_Uih5A8","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}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/_global-error/page.js")
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__110f3bfe._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_e02de4fd._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_d41e4c12._.js")
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__aafd07b5._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_b8b99350._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_9ab1cb57._.js")
|
||||
R.c("server/chunks/ssr/168ba__next-internal_server_app__global-error_page_actions_02dc3924.js")
|
||||
R.m(89061)
|
||||
module.exports=R.m(89061).exports
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__c090943f._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_fb4f49f2._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_aafcc99d._.js")
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__f22d912d._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_f5c48e43._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_474da324._.js")
|
||||
R.c("server/chunks/ssr/6853f__next-internal_server_app__global-error_page_actions_8029ed9b.js")
|
||||
R.m(5161)
|
||||
module.exports=R.m(5161).exports
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -6,12 +6,12 @@
|
||||
],
|
||||
"lowPriorityFiles": [],
|
||||
"rootMainFiles": [
|
||||
"static/chunks/c6c183fbdeff129e.js",
|
||||
"static/chunks/3af7c987a6c28caf.js",
|
||||
"static/chunks/9e02b7100d6e6270.js",
|
||||
"static/chunks/0eaa8682593f715a.js",
|
||||
"static/chunks/ca4429dea6d39825.js",
|
||||
"static/chunks/turbopack-23d2945b770f49d2.js"
|
||||
"static/chunks/fca12c8710bac04f.js",
|
||||
"static/chunks/00501d8005072065.js",
|
||||
"static/chunks/dae599f36ada12e5.js",
|
||||
"static/chunks/c8d8a9d45df7b3b4.js",
|
||||
"static/chunks/e8bd79bd269e9b4f.js",
|
||||
"static/chunks/turbopack-1482dc2f7aa839a8.js"
|
||||
],
|
||||
"pages": {},
|
||||
"ampFirstPages": []
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,8 +1,8 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[98364,["/_next/static/chunks/5b09b31ddc8435aa.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/b5f12f01a94627ac.js","/_next/static/chunks/dd79bb2655505ce5.js","/_next/static/chunks/e907ec4fcc8cd971.js"],"ViewportBoundary"]
|
||||
4:I[98364,["/_next/static/chunks/5b09b31ddc8435aa.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/b5f12f01a94627ac.js","/_next/static/chunks/dd79bb2655505ce5.js","/_next/static/chunks/e907ec4fcc8cd971.js"],"MetadataBoundary"]
|
||||
2:I[91865,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"ViewportBoundary"]
|
||||
4:I[91865,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"MetadataBoundary"]
|
||||
5:"$Sreact.suspense"
|
||||
7:I[91818,["/_next/static/chunks/5b09b31ddc8435aa.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/b5f12f01a94627ac.js","/_next/static/chunks/dd79bb2655505ce5.js","/_next/static/chunks/e907ec4fcc8cd971.js"],"IconMark"]
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
|
||||
7:I[19533,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"IconMark"]
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
|
||||
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
6:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L7","9",{}]]
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[21483,["/_next/static/chunks/5b09b31ddc8435aa.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/b5f12f01a94627ac.js","/_next/static/chunks/dd79bb2655505ce5.js","/_next/static/chunks/e907ec4fcc8cd971.js"],"SessionProvider"]
|
||||
3:I[75212,["/_next/static/chunks/5b09b31ddc8435aa.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/b5f12f01a94627ac.js","/_next/static/chunks/dd79bb2655505ce5.js","/_next/static/chunks/e907ec4fcc8cd971.js"],"DialogProvider"]
|
||||
4:I[92879,["/_next/static/chunks/5b09b31ddc8435aa.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/b5f12f01a94627ac.js","/_next/static/chunks/dd79bb2655505ce5.js","/_next/static/chunks/e907ec4fcc8cd971.js"],"FamilyProvider"]
|
||||
5:I[85367,["/_next/static/chunks/5b09b31ddc8435aa.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/b5f12f01a94627ac.js","/_next/static/chunks/dd79bb2655505ce5.js","/_next/static/chunks/e907ec4fcc8cd971.js"],"PWAProvider"]
|
||||
6:I[66163,["/_next/static/chunks/5b09b31ddc8435aa.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/b5f12f01a94627ac.js","/_next/static/chunks/dd79bb2655505ce5.js","/_next/static/chunks/e907ec4fcc8cd971.js"],"default"]
|
||||
7:I[65586,["/_next/static/chunks/5b09b31ddc8435aa.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/b5f12f01a94627ac.js","/_next/static/chunks/dd79bb2655505ce5.js","/_next/static/chunks/e907ec4fcc8cd971.js"],"default"]
|
||||
2:I[25146,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"SessionProvider"]
|
||||
3:I[33155,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"DialogProvider"]
|
||||
4:I[47489,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"FamilyProvider"]
|
||||
5:I[43657,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"PWAProvider"]
|
||||
6:I[51816,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"default"]
|
||||
7:I[61240,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"default"]
|
||||
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
|
||||
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"]
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/5b09b31ddc8435aa.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/e445297c93c8d39f.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/b5f12f01a94627ac.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/dd79bb2655505ce5.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/e907ec4fcc8cd971.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","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,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"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)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false}
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/be022f253dbbf9ad.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3acbe26d2665d2b1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","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,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"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)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[66163,["/_next/static/chunks/5b09b31ddc8435aa.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/b5f12f01a94627ac.js","/_next/static/chunks/dd79bb2655505ce5.js","/_next/static/chunks/e907ec4fcc8cd971.js"],"default"]
|
||||
3:I[65586,["/_next/static/chunks/5b09b31ddc8435aa.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/b5f12f01a94627ac.js","/_next/static/chunks/dd79bb2655505ce5.js","/_next/static/chunks/e907ec4fcc8cd971.js"],"default"]
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
2:I[51816,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"default"]
|
||||
3:I[61240,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"default"]
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[98364,["/_next/static/chunks/5b09b31ddc8435aa.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/b5f12f01a94627ac.js","/_next/static/chunks/dd79bb2655505ce5.js","/_next/static/chunks/e907ec4fcc8cd971.js"],"OutletBoundary"]
|
||||
2:I[91865,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"OutletBoundary"]
|
||||
3:"$Sreact.suspense"
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","rsc":["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","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,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"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)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","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,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"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)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false}
|
||||
4:null
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
|
||||
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"]
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"/_not-found","paramType":null,"paramKey":"/_not-found","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"/_not-found","paramType":null,"paramKey":"/_not-found","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/_not-found/page.js")
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__87c1ffc8._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_e02de4fd._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_esm_build_templates_app-page_8874adb8.js")
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__aafd07b5._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_b8b99350._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_9ab1cb57._.js")
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__56a99066._.js")
|
||||
R.c("server/chunks/ssr/Documents_go-new_chinese-family-tree_app_loading_tsx_b1f283e0._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_client_components_1ee43648._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_client_components_builtin_forbidden_243a9611.js")
|
||||
R.c("server/chunks/ssr/fb354_chinese-family-tree__next-internal_server_app__not-found_page_actions_6ddf1b31.js")
|
||||
R.m(49361)
|
||||
module.exports=R.m(49361).exports
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__0aee6f09._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_fb4f49f2._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_esm_build_templates_app-page_dca170bf.js")
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__f22d912d._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_f5c48e43._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_474da324._.js")
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__bba02d63._.js")
|
||||
R.c("server/chunks/ssr/Documents_go-new_chinese-family-tree-2_app_loading_tsx_5ed06ae0._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_client_components_5f03e0bc._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_client_components_builtin_forbidden_dbe572fd.js")
|
||||
R.c("server/chunks/ssr/fb354_chinese-family-tree-2__next-internal_server_app__not-found_page_actions_a625ae1f.js")
|
||||
R.m(86687)
|
||||
module.exports=R.m(86687).exports
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -6,12 +6,12 @@
|
||||
],
|
||||
"lowPriorityFiles": [],
|
||||
"rootMainFiles": [
|
||||
"static/chunks/c6c183fbdeff129e.js",
|
||||
"static/chunks/3af7c987a6c28caf.js",
|
||||
"static/chunks/9e02b7100d6e6270.js",
|
||||
"static/chunks/0eaa8682593f715a.js",
|
||||
"static/chunks/ca4429dea6d39825.js",
|
||||
"static/chunks/turbopack-23d2945b770f49d2.js"
|
||||
"static/chunks/fca12c8710bac04f.js",
|
||||
"static/chunks/00501d8005072065.js",
|
||||
"static/chunks/dae599f36ada12e5.js",
|
||||
"static/chunks/c8d8a9d45df7b3b4.js",
|
||||
"static/chunks/e8bd79bd269e9b4f.js",
|
||||
"static/chunks/turbopack-1482dc2f7aa839a8.js"
|
||||
],
|
||||
"pages": {},
|
||||
"ampFirstPages": []
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"pages": {},
|
||||
"app": {
|
||||
"[project]/Documents/go-new/chinese-family-tree/app/_not-found/page": [
|
||||
"[project]/Documents/go-new/chinese-family-tree-2/app/_not-found/page": [
|
||||
"static/media/caa3a2e1cccd8315-s.p.853070df.woff2",
|
||||
"static/media/797e433ab948586e-s.p.dbea232f.woff2"
|
||||
]
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,8 +1,8 @@
|
||||
var R=require("../../../../chunks/[turbopack]_runtime.js")("server/app/api/auth/[...nextauth]/route.js")
|
||||
R.c("server/chunks/[root-of-the-server]__473288e8._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6c883c4b._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6762452f._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__dc19fc6c._.js")
|
||||
R.c("server/chunks/168ba__next-internal_server_app_api_auth_[___nextauth]_route_actions_c984eee0.js")
|
||||
R.m(37849)
|
||||
module.exports=R.m(37849).exports
|
||||
R.c("server/chunks/[root-of-the-server]__9080caed._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__cb768f25._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__f8925229._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__7043aeef._.js")
|
||||
R.c("server/chunks/6853f__next-internal_server_app_api_auth_[___nextauth]_route_actions_38babec3.js")
|
||||
R.m(80255)
|
||||
module.exports=R.m(80255).exports
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
||||
var R=require("../../../../chunks/[turbopack]_runtime.js")("server/app/api/auth/register/route.js")
|
||||
R.c("server/chunks/[root-of-the-server]__cc07e1be._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6c883c4b._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6762452f._.js")
|
||||
R.c("server/chunks/e49cb_zod_v3_external_1a998e53.js")
|
||||
R.c("server/chunks/4e98a_next_43fc5466._.js")
|
||||
R.c("server/chunks/168ba__next-internal_server_app_api_auth_register_route_actions_5f0b2c44.js")
|
||||
R.m(85672)
|
||||
module.exports=R.m(85672).exports
|
||||
R.c("server/chunks/[root-of-the-server]__a37f9cc5._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__cb768f25._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__f8925229._.js")
|
||||
R.c("server/chunks/34945_zod_v3_external_9e6d73f0.js")
|
||||
R.c("server/chunks/221ab_next_993738f5._.js")
|
||||
R.c("server/chunks/6853f__next-internal_server_app_api_auth_register_route_actions_2f38d766.js")
|
||||
R.m(22064)
|
||||
module.exports=R.m(22064).exports
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
||||
var R=require("../../../../../chunks/[turbopack]_runtime.js")("server/app/api/trees/[treeId]/activity-logs/route.js")
|
||||
R.c("server/chunks/[root-of-the-server]__a9075a08._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6c883c4b._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6762452f._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__dc19fc6c._.js")
|
||||
R.c("server/chunks/4e98a_next_43fc5466._.js")
|
||||
R.c("server/chunks/54027_server_app_api_trees_[treeId]_activity-logs_route_actions_7cec2c11.js")
|
||||
R.m(82870)
|
||||
module.exports=R.m(82870).exports
|
||||
R.c("server/chunks/[root-of-the-server]__ebbd444b._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__cb768f25._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__f8925229._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__7043aeef._.js")
|
||||
R.c("server/chunks/221ab_next_993738f5._.js")
|
||||
R.c("server/chunks/4525d_server_app_api_trees_[treeId]_activity-logs_route_actions_25082137.js")
|
||||
R.m(2856)
|
||||
module.exports=R.m(2856).exports
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
||||
var R=require("../../../../../chunks/[turbopack]_runtime.js")("server/app/api/trees/[treeId]/collaborators/route.js")
|
||||
R.c("server/chunks/[root-of-the-server]__bb90136b._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6c883c4b._.js")
|
||||
R.c("server/chunks/4e98a_next_43fc5466._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__dc19fc6c._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6762452f._.js")
|
||||
R.c("server/chunks/54027_server_app_api_trees_[treeId]_collaborators_route_actions_9236bcfc.js")
|
||||
R.m(41510)
|
||||
module.exports=R.m(41510).exports
|
||||
R.c("server/chunks/[root-of-the-server]__20dd217b._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__cb768f25._.js")
|
||||
R.c("server/chunks/221ab_next_993738f5._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__7043aeef._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__f8925229._.js")
|
||||
R.c("server/chunks/4525d_server_app_api_trees_[treeId]_collaborators_route_actions_435ca1a5.js")
|
||||
R.m(4057)
|
||||
module.exports=R.m(4057).exports
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
||||
var R=require("../../../../../chunks/[turbopack]_runtime.js")("server/app/api/trees/[treeId]/import/route.js")
|
||||
R.c("server/chunks/[root-of-the-server]__fb723217._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6c883c4b._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6762452f._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__dc19fc6c._.js")
|
||||
R.c("server/chunks/4e98a_next_43fc5466._.js")
|
||||
R.c("server/chunks/168ba__next-internal_server_app_api_trees_[treeId]_import_route_actions_ac9f5f91.js")
|
||||
R.m(85342)
|
||||
module.exports=R.m(85342).exports
|
||||
R.c("server/chunks/[root-of-the-server]__f8ef0a6f._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__cb768f25._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__f8925229._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__7043aeef._.js")
|
||||
R.c("server/chunks/221ab_next_993738f5._.js")
|
||||
R.c("server/chunks/6853f__next-internal_server_app_api_trees_[treeId]_import_route_actions_f168c697.js")
|
||||
R.m(31860)
|
||||
module.exports=R.m(31860).exports
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,11 +1,11 @@
|
||||
var R=require("../../../../../chunks/[turbopack]_runtime.js")("server/app/api/trees/[treeId]/invite/route.js")
|
||||
R.c("server/chunks/[root-of-the-server]__54e00d3b._.js")
|
||||
R.c("server/chunks/4e98a_next_43fc5466._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6c883c4b._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__580eb295._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__dc19fc6c._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6762452f._.js")
|
||||
R.c("server/chunks/e49cb_zod_v3_external_1a998e53.js")
|
||||
R.c("server/chunks/168ba__next-internal_server_app_api_trees_[treeId]_invite_route_actions_bad26b87.js")
|
||||
R.m(153)
|
||||
module.exports=R.m(153).exports
|
||||
R.c("server/chunks/[root-of-the-server]__e749cc8c._.js")
|
||||
R.c("server/chunks/221ab_next_993738f5._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__cb768f25._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__7e157648._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__7043aeef._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__f8925229._.js")
|
||||
R.c("server/chunks/34945_zod_v3_external_9e6d73f0.js")
|
||||
R.c("server/chunks/6853f__next-internal_server_app_api_trees_[treeId]_invite_route_actions_a45dfa0c.js")
|
||||
R.m(38462)
|
||||
module.exports=R.m(38462).exports
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,10 +1,10 @@
|
||||
var R=require("../../../../../../chunks/[turbopack]_runtime.js")("server/app/api/trees/[treeId]/members/[memberId]/route.js")
|
||||
R.c("server/chunks/[root-of-the-server]__ec27e302._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6c883c4b._.js")
|
||||
R.c("server/chunks/4e98a_next_dist_esm_build_templates_app-route_4548132e.js")
|
||||
R.c("server/chunks/[root-of-the-server]__dc19fc6c._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6762452f._.js")
|
||||
R.c("server/chunks/4e98a_next_43fc5466._.js")
|
||||
R.c("server/chunks/54027_server_app_api_trees_[treeId]_members_[memberId]_route_actions_ccc69906.js")
|
||||
R.m(39475)
|
||||
module.exports=R.m(39475).exports
|
||||
R.c("server/chunks/[root-of-the-server]__2b21a1c8._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__cb768f25._.js")
|
||||
R.c("server/chunks/221ab_next_dist_esm_build_templates_app-route_5cafa553.js")
|
||||
R.c("server/chunks/[root-of-the-server]__7043aeef._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__f8925229._.js")
|
||||
R.c("server/chunks/221ab_next_993738f5._.js")
|
||||
R.c("server/chunks/4525d_server_app_api_trees_[treeId]_members_[memberId]_route_actions_6b22a34e.js")
|
||||
R.m(84832)
|
||||
module.exports=R.m(84832).exports
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,10 +1,10 @@
|
||||
var R=require("../../../../../chunks/[turbopack]_runtime.js")("server/app/api/trees/[treeId]/members/route.js")
|
||||
R.c("server/chunks/[root-of-the-server]__da3cad68._.js")
|
||||
R.c("server/chunks/4e98a_next_43fc5466._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6c883c4b._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6762452f._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__dc19fc6c._.js")
|
||||
R.c("server/chunks/e49cb_zod_v3_external_1a998e53.js")
|
||||
R.c("server/chunks/168ba__next-internal_server_app_api_trees_[treeId]_members_route_actions_fd0cf9e1.js")
|
||||
R.m(48822)
|
||||
module.exports=R.m(48822).exports
|
||||
R.c("server/chunks/[root-of-the-server]__15f7a808._.js")
|
||||
R.c("server/chunks/221ab_next_993738f5._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__cb768f25._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__f8925229._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__7043aeef._.js")
|
||||
R.c("server/chunks/34945_zod_v3_external_9e6d73f0.js")
|
||||
R.c("server/chunks/6853f__next-internal_server_app_api_trees_[treeId]_members_route_actions_eec3f689.js")
|
||||
R.m(87130)
|
||||
module.exports=R.m(87130).exports
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,8 +1,8 @@
|
||||
var R=require("../../../../../chunks/[turbopack]_runtime.js")("server/app/api/trees/[treeId]/relationship/route.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6c1af7e5._.js")
|
||||
R.c("server/chunks/4e98a_next_43fc5466._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6762452f._.js")
|
||||
R.c("server/chunks/4e98a_next_dist_esm_build_templates_app-route_c253ba95.js")
|
||||
R.c("server/chunks/7c58b_next-internal_server_app_api_trees_[treeId]_relationship_route_actions_6f0034b0.js")
|
||||
R.m(28987)
|
||||
module.exports=R.m(28987).exports
|
||||
R.c("server/chunks/[root-of-the-server]__35f93ffd._.js")
|
||||
R.c("server/chunks/221ab_next_993738f5._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__f8925229._.js")
|
||||
R.c("server/chunks/221ab_next_dist_esm_build_templates_app-route_e7c5a6e7.js")
|
||||
R.c("server/chunks/304b4_next-internal_server_app_api_trees_[treeId]_relationship_route_actions_b71ec786.js")
|
||||
R.m(37925)
|
||||
module.exports=R.m(37925).exports
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
||||
var R=require("../../../../chunks/[turbopack]_runtime.js")("server/app/api/trees/[treeId]/route.js")
|
||||
R.c("server/chunks/[root-of-the-server]__c40ca53a._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6c883c4b._.js")
|
||||
R.c("server/chunks/4e98a_next_43fc5466._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__dc19fc6c._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6762452f._.js")
|
||||
R.c("server/chunks/168ba__next-internal_server_app_api_trees_[treeId]_route_actions_03a64898.js")
|
||||
R.m(55966)
|
||||
module.exports=R.m(55966).exports
|
||||
R.c("server/chunks/[root-of-the-server]__fc8fac13._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__cb768f25._.js")
|
||||
R.c("server/chunks/221ab_next_993738f5._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__7043aeef._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__f8925229._.js")
|
||||
R.c("server/chunks/6853f__next-internal_server_app_api_trees_[treeId]_route_actions_b39e76c6.js")
|
||||
R.m(13411)
|
||||
module.exports=R.m(13411).exports
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,10 +1,10 @@
|
||||
var R=require("../../../chunks/[turbopack]_runtime.js")("server/app/api/trees/route.js")
|
||||
R.c("server/chunks/[root-of-the-server]__75b17a2b._.js")
|
||||
R.c("server/chunks/e49cb_zod_v3_external_1a998e53.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6c883c4b._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6762452f._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__dc19fc6c._.js")
|
||||
R.c("server/chunks/4e98a_next_43fc5466._.js")
|
||||
R.c("server/chunks/fb354_chinese-family-tree__next-internal_server_app_api_trees_route_actions_ef9d7b56.js")
|
||||
R.m(54943)
|
||||
module.exports=R.m(54943).exports
|
||||
R.c("server/chunks/[root-of-the-server]__270b7f50._.js")
|
||||
R.c("server/chunks/34945_zod_v3_external_9e6d73f0.js")
|
||||
R.c("server/chunks/[root-of-the-server]__cb768f25._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__f8925229._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__7043aeef._.js")
|
||||
R.c("server/chunks/221ab_next_993738f5._.js")
|
||||
R.c("server/chunks/fb354_chinese-family-tree-2__next-internal_server_app_api_trees_route_actions_05525918.js")
|
||||
R.m(60744)
|
||||
module.exports=R.m(60744).exports
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
||||
var R=require("../../../../chunks/[turbopack]_runtime.js")("server/app/api/user/activity-logs/route.js")
|
||||
R.c("server/chunks/[root-of-the-server]__2c0388d1._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6c883c4b._.js")
|
||||
R.c("server/chunks/4e98a_next_43fc5466._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__dc19fc6c._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6762452f._.js")
|
||||
R.c("server/chunks/168ba__next-internal_server_app_api_user_activity-logs_route_actions_225a198a.js")
|
||||
R.m(4887)
|
||||
module.exports=R.m(4887).exports
|
||||
R.c("server/chunks/[root-of-the-server]__c9a72537._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__cb768f25._.js")
|
||||
R.c("server/chunks/221ab_next_993738f5._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__7043aeef._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__f8925229._.js")
|
||||
R.c("server/chunks/6853f__next-internal_server_app_api_user_activity-logs_route_actions_96bf65d5.js")
|
||||
R.m(16834)
|
||||
module.exports=R.m(16834).exports
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,10 +1,10 @@
|
||||
var R=require("../../../../chunks/[turbopack]_runtime.js")("server/app/api/user/change-password/route.js")
|
||||
R.c("server/chunks/[root-of-the-server]__c832b857._.js")
|
||||
R.c("server/chunks/e49cb_zod_v3_external_1a998e53.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6c883c4b._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6762452f._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__dc19fc6c._.js")
|
||||
R.c("server/chunks/4e98a_next_43fc5466._.js")
|
||||
R.c("server/chunks/168ba__next-internal_server_app_api_user_change-password_route_actions_903bd906.js")
|
||||
R.m(27779)
|
||||
module.exports=R.m(27779).exports
|
||||
R.c("server/chunks/[root-of-the-server]__a046719c._.js")
|
||||
R.c("server/chunks/34945_zod_v3_external_9e6d73f0.js")
|
||||
R.c("server/chunks/[root-of-the-server]__cb768f25._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__f8925229._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__7043aeef._.js")
|
||||
R.c("server/chunks/221ab_next_993738f5._.js")
|
||||
R.c("server/chunks/6853f__next-internal_server_app_api_user_change-password_route_actions_c37b045d.js")
|
||||
R.m(50560)
|
||||
module.exports=R.m(50560).exports
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
||||
var R=require("../../../../chunks/[turbopack]_runtime.js")("server/app/api/user/profile/route.js")
|
||||
R.c("server/chunks/[root-of-the-server]__23731c18._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6c883c4b._.js")
|
||||
R.c("server/chunks/4e98a_next_43fc5466._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__dc19fc6c._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__6762452f._.js")
|
||||
R.c("server/chunks/168ba__next-internal_server_app_api_user_profile_route_actions_51bc6fca.js")
|
||||
R.m(57210)
|
||||
module.exports=R.m(57210).exports
|
||||
R.c("server/chunks/[root-of-the-server]__c652ac9e._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__cb768f25._.js")
|
||||
R.c("server/chunks/221ab_next_993738f5._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__7043aeef._.js")
|
||||
R.c("server/chunks/[root-of-the-server]__f8925229._.js")
|
||||
R.c("server/chunks/6853f__next-internal_server_app_api_user_profile_route_actions_5fe88e75.js")
|
||||
R.m(36735)
|
||||
module.exports=R.m(36735).exports
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,25 +1,25 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[21483,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"SessionProvider"]
|
||||
3:I[75212,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"DialogProvider"]
|
||||
4:I[92879,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"FamilyProvider"]
|
||||
5:I[85367,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"PWAProvider"]
|
||||
6:I[66163,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
7:I[65586,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
8:I[33040,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"ClientPageRoot"]
|
||||
9:I[96601,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js","/_next/static/chunks/26f130648adf692e.js"],"default"]
|
||||
c:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"OutletBoundary"]
|
||||
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"]
|
||||
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"]
|
||||
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"]
|
||||
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"]
|
||||
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
|
||||
9:I[88825,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/269a7f1115bc3068.js"],"default"]
|
||||
c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
|
||||
d:"$Sreact.suspense"
|
||||
f:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"ViewportBoundary"]
|
||||
11:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"MetadataBoundary"]
|
||||
13:I[95067,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
|
||||
11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
|
||||
13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
|
||||
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"b":"WbYR2XE95Gc5XXVQ7W0XS","c":["","auth","register"],"q":"","i":false,"f":[[["",{"children":["auth",{"children":["register",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d02601298df4737b.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/e445297c93c8d39f.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/e907ec4fcc8cd971.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/dd79bb2655505ce5.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","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,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"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)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/26f130648adf692e.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
|
||||
0:{"P":null,"b":"NAO-lsKimvD1dA_Uih5A8","c":["","auth","register"],"q":"","i":false,"f":[[["",{"children":["auth",{"children":["register",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","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,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"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)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/269a7f1115bc3068.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
|
||||
a:{}
|
||||
b:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
14:I[91818,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"IconMark"]
|
||||
14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
|
||||
12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]]
|
||||
e:null
|
||||
|
||||
@@ -1,25 +1,25 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[21483,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"SessionProvider"]
|
||||
3:I[75212,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"DialogProvider"]
|
||||
4:I[92879,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"FamilyProvider"]
|
||||
5:I[85367,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"PWAProvider"]
|
||||
6:I[66163,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
7:I[65586,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
8:I[33040,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"ClientPageRoot"]
|
||||
9:I[96601,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js","/_next/static/chunks/26f130648adf692e.js"],"default"]
|
||||
c:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"OutletBoundary"]
|
||||
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"]
|
||||
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"]
|
||||
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"]
|
||||
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"]
|
||||
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
|
||||
9:I[88825,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/269a7f1115bc3068.js"],"default"]
|
||||
c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
|
||||
d:"$Sreact.suspense"
|
||||
f:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"ViewportBoundary"]
|
||||
11:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"MetadataBoundary"]
|
||||
13:I[95067,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
|
||||
11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
|
||||
13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
|
||||
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"b":"WbYR2XE95Gc5XXVQ7W0XS","c":["","auth","register"],"q":"","i":false,"f":[[["",{"children":["auth",{"children":["register",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d02601298df4737b.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/e445297c93c8d39f.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/e907ec4fcc8cd971.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/dd79bb2655505ce5.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","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,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"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)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/26f130648adf692e.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
|
||||
0:{"P":null,"b":"NAO-lsKimvD1dA_Uih5A8","c":["","auth","register"],"q":"","i":false,"f":[[["",{"children":["auth",{"children":["register",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","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,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"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)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/269a7f1115bc3068.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
|
||||
a:{}
|
||||
b:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
14:I[91818,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"IconMark"]
|
||||
14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
|
||||
12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]]
|
||||
e:null
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"ViewportBoundary"]
|
||||
4:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"MetadataBoundary"]
|
||||
2:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
|
||||
4:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
|
||||
5:"$Sreact.suspense"
|
||||
7:I[91818,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"IconMark"]
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
|
||||
7:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
|
||||
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
6:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L7","9",{}]]
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[21483,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"SessionProvider"]
|
||||
3:I[75212,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"DialogProvider"]
|
||||
4:I[92879,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"FamilyProvider"]
|
||||
5:I[85367,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"PWAProvider"]
|
||||
6:I[66163,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
7:I[65586,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"]
|
||||
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"]
|
||||
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"]
|
||||
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"]
|
||||
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
|
||||
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"]
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d02601298df4737b.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/e445297c93c8d39f.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/e907ec4fcc8cd971.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/dd79bb2655505ce5.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","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,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"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)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false}
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","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,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"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)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false}
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"auth","paramType":null,"paramKey":"auth","hasRuntimePrefetch":false,"slots":{"children":{"name":"register","paramType":null,"paramKey":"register","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"auth","paramType":null,"paramKey":"auth","hasRuntimePrefetch":false,"slots":{"children":{"name":"register","paramType":null,"paramKey":"register","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[66163,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
3:I[65586,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[66163,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
3:I[65586,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[33040,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"ClientPageRoot"]
|
||||
3:I[96601,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js","/_next/static/chunks/26f130648adf692e.js"],"default"]
|
||||
6:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"OutletBoundary"]
|
||||
2:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
|
||||
3:I[88825,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/269a7f1115bc3068.js"],"default"]
|
||||
6:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/26f130648adf692e.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/269a7f1115bc3068.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
var R=require("../../../chunks/ssr/[turbopack]_runtime.js")("server/app/auth/register/page.js")
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__d7cba91d._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_e02de4fd._.js")
|
||||
R.c("server/chunks/ssr/Documents_go-new_chinese-family-tree_f79bfe49._.js")
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__f08d7d3c._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_b8b99350._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_9ab1cb57._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_client_components_builtin_global-error_196f2367.js")
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__56a99066._.js")
|
||||
R.c("server/chunks/ssr/Documents_go-new_chinese-family-tree_app_loading_tsx_b1f283e0._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_client_components_1ee43648._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_client_components_builtin_forbidden_243a9611.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_client_components_builtin_unauthorized_719c1458.js")
|
||||
R.c("server/chunks/ssr/168ba__next-internal_server_app_auth_register_page_actions_06863d84.js")
|
||||
R.m(69845)
|
||||
module.exports=R.m(69845).exports
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__668f28ea._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_fb4f49f2._.js")
|
||||
R.c("server/chunks/ssr/Documents_go-new_chinese-family-tree-2_0c5cdb89._.js")
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__94a2ea6e._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_f5c48e43._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_474da324._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_client_components_builtin_global-error_cdc1601f.js")
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__bba02d63._.js")
|
||||
R.c("server/chunks/ssr/Documents_go-new_chinese-family-tree-2_app_loading_tsx_5ed06ae0._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_client_components_5f03e0bc._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_client_components_builtin_forbidden_dbe572fd.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_client_components_builtin_unauthorized_2196d517.js")
|
||||
R.c("server/chunks/ssr/6853f__next-internal_server_app_auth_register_page_actions_d9535eb0.js")
|
||||
R.m(29901)
|
||||
module.exports=R.m(29901).exports
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -6,12 +6,12 @@
|
||||
],
|
||||
"lowPriorityFiles": [],
|
||||
"rootMainFiles": [
|
||||
"static/chunks/c6c183fbdeff129e.js",
|
||||
"static/chunks/3af7c987a6c28caf.js",
|
||||
"static/chunks/9e02b7100d6e6270.js",
|
||||
"static/chunks/0eaa8682593f715a.js",
|
||||
"static/chunks/ca4429dea6d39825.js",
|
||||
"static/chunks/turbopack-23d2945b770f49d2.js"
|
||||
"static/chunks/fca12c8710bac04f.js",
|
||||
"static/chunks/00501d8005072065.js",
|
||||
"static/chunks/dae599f36ada12e5.js",
|
||||
"static/chunks/c8d8a9d45df7b3b4.js",
|
||||
"static/chunks/e8bd79bd269e9b4f.js",
|
||||
"static/chunks/turbopack-1482dc2f7aa839a8.js"
|
||||
],
|
||||
"pages": {},
|
||||
"ampFirstPages": []
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"pages": {},
|
||||
"app": {
|
||||
"[project]/Documents/go-new/chinese-family-tree/app/auth/register/page": [
|
||||
"[project]/Documents/go-new/chinese-family-tree-2/app/auth/register/page": [
|
||||
"static/media/caa3a2e1cccd8315-s.p.853070df.woff2",
|
||||
"static/media/797e433ab948586e-s.p.dbea232f.woff2"
|
||||
]
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,25 +1,25 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[21483,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"SessionProvider"]
|
||||
3:I[75212,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"DialogProvider"]
|
||||
4:I[92879,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"FamilyProvider"]
|
||||
5:I[85367,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"PWAProvider"]
|
||||
6:I[66163,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
7:I[65586,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
8:I[33040,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"ClientPageRoot"]
|
||||
9:I[53474,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js","/_next/static/chunks/3d8c63fa8f9ee66a.js"],"default"]
|
||||
c:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"OutletBoundary"]
|
||||
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"]
|
||||
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"]
|
||||
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"]
|
||||
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"]
|
||||
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
|
||||
9:I[81544,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/ea3204b87d11e9b2.js"],"default"]
|
||||
c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
|
||||
d:"$Sreact.suspense"
|
||||
f:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"ViewportBoundary"]
|
||||
11:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"MetadataBoundary"]
|
||||
13:I[95067,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
|
||||
11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
|
||||
13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
|
||||
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"b":"WbYR2XE95Gc5XXVQ7W0XS","c":["","auth","signin"],"q":"","i":false,"f":[[["",{"children":["auth",{"children":["signin",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d02601298df4737b.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/e445297c93c8d39f.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/e907ec4fcc8cd971.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/dd79bb2655505ce5.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","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,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"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)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/3d8c63fa8f9ee66a.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
|
||||
0:{"P":null,"b":"NAO-lsKimvD1dA_Uih5A8","c":["","auth","signin"],"q":"","i":false,"f":[[["",{"children":["auth",{"children":["signin",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","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,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"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)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/ea3204b87d11e9b2.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
|
||||
a:{}
|
||||
b:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
14:I[91818,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"IconMark"]
|
||||
14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
|
||||
12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]]
|
||||
e:null
|
||||
|
||||
@@ -1,25 +1,25 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[21483,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"SessionProvider"]
|
||||
3:I[75212,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"DialogProvider"]
|
||||
4:I[92879,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"FamilyProvider"]
|
||||
5:I[85367,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"PWAProvider"]
|
||||
6:I[66163,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
7:I[65586,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
8:I[33040,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"ClientPageRoot"]
|
||||
9:I[53474,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js","/_next/static/chunks/3d8c63fa8f9ee66a.js"],"default"]
|
||||
c:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"OutletBoundary"]
|
||||
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"]
|
||||
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"]
|
||||
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"]
|
||||
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"]
|
||||
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
|
||||
9:I[81544,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/ea3204b87d11e9b2.js"],"default"]
|
||||
c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
|
||||
d:"$Sreact.suspense"
|
||||
f:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"ViewportBoundary"]
|
||||
11:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"MetadataBoundary"]
|
||||
13:I[95067,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
|
||||
11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
|
||||
13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
|
||||
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"b":"WbYR2XE95Gc5XXVQ7W0XS","c":["","auth","signin"],"q":"","i":false,"f":[[["",{"children":["auth",{"children":["signin",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d02601298df4737b.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/e445297c93c8d39f.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/e907ec4fcc8cd971.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/dd79bb2655505ce5.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","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,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"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)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/3d8c63fa8f9ee66a.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
|
||||
0:{"P":null,"b":"NAO-lsKimvD1dA_Uih5A8","c":["","auth","signin"],"q":"","i":false,"f":[[["",{"children":["auth",{"children":["signin",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","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,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"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)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/ea3204b87d11e9b2.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
|
||||
a:{}
|
||||
b:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
14:I[91818,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"IconMark"]
|
||||
14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
|
||||
12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]]
|
||||
e:null
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"ViewportBoundary"]
|
||||
4:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"MetadataBoundary"]
|
||||
2:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
|
||||
4:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
|
||||
5:"$Sreact.suspense"
|
||||
7:I[91818,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"IconMark"]
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
|
||||
7:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
|
||||
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
6:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L7","9",{}]]
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[21483,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"SessionProvider"]
|
||||
3:I[75212,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"DialogProvider"]
|
||||
4:I[92879,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"FamilyProvider"]
|
||||
5:I[85367,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"PWAProvider"]
|
||||
6:I[66163,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
7:I[65586,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"]
|
||||
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"]
|
||||
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"]
|
||||
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"]
|
||||
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
|
||||
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"]
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d02601298df4737b.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/e445297c93c8d39f.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/e907ec4fcc8cd971.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/dd79bb2655505ce5.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","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,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"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)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false}
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","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,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"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)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false}
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"auth","paramType":null,"paramKey":"auth","hasRuntimePrefetch":false,"slots":{"children":{"name":"signin","paramType":null,"paramKey":"signin","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"auth","paramType":null,"paramKey":"auth","hasRuntimePrefetch":false,"slots":{"children":{"name":"signin","paramType":null,"paramKey":"signin","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[66163,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
3:I[65586,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[66163,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
3:I[65586,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[33040,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"ClientPageRoot"]
|
||||
3:I[53474,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js","/_next/static/chunks/3d8c63fa8f9ee66a.js"],"default"]
|
||||
6:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"OutletBoundary"]
|
||||
2:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
|
||||
3:I[81544,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/ea3204b87d11e9b2.js"],"default"]
|
||||
6:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"buildId":"WbYR2XE95Gc5XXVQ7W0XS","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/3d8c63fa8f9ee66a.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/ea3204b87d11e9b2.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
var R=require("../../../chunks/ssr/[turbopack]_runtime.js")("server/app/auth/signin/page.js")
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__193c2baa._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_e02de4fd._.js")
|
||||
R.c("server/chunks/ssr/Documents_go-new_chinese-family-tree_49441460._.js")
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__f08d7d3c._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_b8b99350._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_9ab1cb57._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_client_components_builtin_global-error_196f2367.js")
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__56a99066._.js")
|
||||
R.c("server/chunks/ssr/Documents_go-new_chinese-family-tree_app_loading_tsx_b1f283e0._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_client_components_1ee43648._.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_client_components_builtin_forbidden_243a9611.js")
|
||||
R.c("server/chunks/ssr/4e98a_next_dist_client_components_builtin_unauthorized_719c1458.js")
|
||||
R.c("server/chunks/ssr/fb354_chinese-family-tree__next-internal_server_app_auth_signin_page_actions_55271f03.js")
|
||||
R.m(37376)
|
||||
module.exports=R.m(37376).exports
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__4d7ea960._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_fb4f49f2._.js")
|
||||
R.c("server/chunks/ssr/Documents_go-new_chinese-family-tree-2_f75d8cae._.js")
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__94a2ea6e._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_f5c48e43._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_474da324._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_client_components_builtin_global-error_cdc1601f.js")
|
||||
R.c("server/chunks/ssr/[root-of-the-server]__bba02d63._.js")
|
||||
R.c("server/chunks/ssr/Documents_go-new_chinese-family-tree-2_app_loading_tsx_5ed06ae0._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_client_components_5f03e0bc._.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_client_components_builtin_forbidden_dbe572fd.js")
|
||||
R.c("server/chunks/ssr/221ab_next_dist_client_components_builtin_unauthorized_2196d517.js")
|
||||
R.c("server/chunks/ssr/0c1b7_hinese-family-tree-2__next-internal_server_app_auth_signin_page_actions_98955572.js")
|
||||
R.m(64485)
|
||||
module.exports=R.m(64485).exports
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -6,12 +6,12 @@
|
||||
],
|
||||
"lowPriorityFiles": [],
|
||||
"rootMainFiles": [
|
||||
"static/chunks/c6c183fbdeff129e.js",
|
||||
"static/chunks/3af7c987a6c28caf.js",
|
||||
"static/chunks/9e02b7100d6e6270.js",
|
||||
"static/chunks/0eaa8682593f715a.js",
|
||||
"static/chunks/ca4429dea6d39825.js",
|
||||
"static/chunks/turbopack-23d2945b770f49d2.js"
|
||||
"static/chunks/fca12c8710bac04f.js",
|
||||
"static/chunks/00501d8005072065.js",
|
||||
"static/chunks/dae599f36ada12e5.js",
|
||||
"static/chunks/c8d8a9d45df7b3b4.js",
|
||||
"static/chunks/e8bd79bd269e9b4f.js",
|
||||
"static/chunks/turbopack-1482dc2f7aa839a8.js"
|
||||
],
|
||||
"pages": {},
|
||||
"ampFirstPages": []
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"pages": {},
|
||||
"app": {
|
||||
"[project]/Documents/go-new/chinese-family-tree/app/auth/signin/page": [
|
||||
"[project]/Documents/go-new/chinese-family-tree-2/app/auth/signin/page": [
|
||||
"static/media/caa3a2e1cccd8315-s.p.853070df.woff2",
|
||||
"static/media/797e433ab948586e-s.p.dbea232f.woff2"
|
||||
]
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+14
-14
@@ -1,25 +1,25 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[21483,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"SessionProvider"]
|
||||
3:I[75212,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"DialogProvider"]
|
||||
4:I[92879,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"FamilyProvider"]
|
||||
5:I[85367,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js"],"PWAProvider"]
|
||||
6:I[66163,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
7:I[65586,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
8:I[33040,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"ClientPageRoot"]
|
||||
9:I[17531,["/_next/static/chunks/d02601298df4737b.js","/_next/static/chunks/e445297c93c8d39f.js","/_next/static/chunks/e907ec4fcc8cd971.js","/_next/static/chunks/dd79bb2655505ce5.js","/_next/static/chunks/0d28d338bca30fed.js","/_next/static/chunks/9d1d9f35117f1c44.js"],"default"]
|
||||
c:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"OutletBoundary"]
|
||||
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"]
|
||||
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"]
|
||||
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"]
|
||||
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"]
|
||||
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
|
||||
9:I[64356,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/394590bab54d261d.js","/_next/static/chunks/d009ea57c26b3da6.js"],"default"]
|
||||
c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
|
||||
d:"$Sreact.suspense"
|
||||
f:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"ViewportBoundary"]
|
||||
11:I[98364,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"MetadataBoundary"]
|
||||
13:I[95067,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"default"]
|
||||
f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
|
||||
11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
|
||||
13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
|
||||
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
|
||||
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"b":"WbYR2XE95Gc5XXVQ7W0XS","c":["","help"],"q":"","i":false,"f":[[["",{"children":["help",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d02601298df4737b.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/e445297c93c8d39f.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/e907ec4fcc8cd971.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/dd79bb2655505ce5.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","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,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"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)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0d28d338bca30fed.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/9d1d9f35117f1c44.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
|
||||
0:{"P":null,"b":"NAO-lsKimvD1dA_Uih5A8","c":["","help"],"q":"","i":false,"f":[[["",{"children":["help",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","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,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"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)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/394590bab54d261d.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/d009ea57c26b3da6.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
|
||||
a:{}
|
||||
b:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
14:I[91818,["/_next/static/chunks/8f17d8759a6e1b46.js","/_next/static/chunks/b5f12f01a94627ac.js"],"IconMark"]
|
||||
14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
|
||||
12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]]
|
||||
e:null
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user