feat(blog): add file-based blog with dynamic slugs, MDX content and layout shell

- Introduced blog routing using Next.js App Router
- Implemented dynamic [slug] pages for blog posts
- Added MDX-based content loading via lib/posts
- Integrated shared TopBar layout with navigation
- Established clear content, lib and component separation
This commit is contained in:
PascalSchattenburg
2026-01-22 14:14:15 +01:00
parent b717952234
commit d147843c76
10412 changed files with 2475583 additions and 0 deletions

View File

@@ -0,0 +1,213 @@
import path from 'path';
import { validateTurboNextConfig } from '../../lib/turbopack-warning';
import { isFileSystemCacheEnabledForBuild } from '../../shared/lib/turbopack/utils';
import { NextBuildContext } from '../build-context';
import { createDefineEnv, getBindingsSync } from '../swc';
import { installBindings } from '../swc/install-bindings';
import { handleRouteType, rawEntrypointsToEntrypoints } from '../handle-entrypoints';
import { TurbopackManifestLoader } from '../../shared/lib/turbopack/manifest-loader';
import { promises as fs } from 'fs';
import { PHASE_PRODUCTION_BUILD } from '../../shared/lib/constants';
import loadConfig from '../../server/config';
import { hasCustomExportOutput } from '../../export/utils';
import { Telemetry } from '../../telemetry/storage';
import { setGlobal } from '../../trace';
import { isCI } from '../../server/ci-info';
import { backgroundLogCompilationEvents } from '../../shared/lib/turbopack/compilation-events';
import { getSupportedBrowsers, printBuildErrors } from '../utils';
import { normalizePath } from '../../lib/normalize-path';
export async function turbopackBuild() {
var _config_turbopack, _config_turbopack1, _config_experimental;
await validateTurboNextConfig({
dir: NextBuildContext.dir,
configPhase: PHASE_PRODUCTION_BUILD
});
const config = NextBuildContext.config;
const dir = NextBuildContext.dir;
const distDir = NextBuildContext.distDir;
const buildId = NextBuildContext.buildId;
const encryptionKey = NextBuildContext.encryptionKey;
const previewProps = NextBuildContext.previewProps;
const hasRewrites = NextBuildContext.hasRewrites;
const rewrites = NextBuildContext.rewrites;
const noMangling = NextBuildContext.noMangling;
const currentNodeJsVersion = process.versions.node;
const startTime = process.hrtime();
const bindings = getBindingsSync() // our caller should have already loaded these
;
const dev = false;
const supportedBrowsers = getSupportedBrowsers(dir, dev);
const persistentCaching = isFileSystemCacheEnabledForBuild(config);
const rootPath = ((_config_turbopack = config.turbopack) == null ? void 0 : _config_turbopack.root) || config.outputFileTracingRoot || dir;
const project = await bindings.turbo.createProject({
rootPath: ((_config_turbopack1 = config.turbopack) == null ? void 0 : _config_turbopack1.root) || config.outputFileTracingRoot || dir,
projectPath: normalizePath(path.relative(rootPath, dir) || '.'),
distDir,
nextConfig: config,
watch: {
enable: false
},
dev,
env: process.env,
defineEnv: createDefineEnv({
isTurbopack: true,
clientRouterFilters: NextBuildContext.clientRouterFilters,
config,
dev,
distDir,
projectPath: dir,
fetchCacheKeyPrefix: config.experimental.fetchCacheKeyPrefix,
hasRewrites,
// Implemented separately in Turbopack, doesn't have to be passed here.
middlewareMatchers: undefined,
rewrites
}),
buildId,
encryptionKey,
previewProps,
browserslistQuery: supportedBrowsers.join(', '),
noMangling,
writeRoutesHashesManifest: !!process.env.NEXT_TURBOPACK_WRITE_ROUTES_HASHES_MANIFEST,
currentNodeJsVersion
}, {
persistentCaching,
memoryLimit: (_config_experimental = config.experimental) == null ? void 0 : _config_experimental.turbopackMemoryLimit,
dependencyTracking: persistentCaching,
isCi: isCI,
isShortSession: true
});
try {
backgroundLogCompilationEvents(project);
// Write an empty file in a known location to signal this was built with Turbopack
await fs.writeFile(path.join(distDir, 'turbopack'), '');
await fs.mkdir(path.join(distDir, 'server'), {
recursive: true
});
await fs.mkdir(path.join(distDir, 'static', buildId), {
recursive: true
});
await fs.writeFile(path.join(distDir, 'package.json'), '{"type": "commonjs"}');
let appDirOnly = NextBuildContext.appDirOnly;
const entrypoints = await project.writeAllEntrypointsToDisk(appDirOnly);
printBuildErrors(entrypoints, dev);
let routes = entrypoints.routes;
if (!routes) {
// This should never ever happen, there should be an error issue, or the bindings call should
// have thrown.
throw Object.defineProperty(new Error(`Turbopack build failed`), "__NEXT_ERROR_CODE", {
value: "E853",
enumerable: false,
configurable: true
});
}
const hasPagesEntries = Array.from(routes.values()).some((route)=>{
if (route.type === 'page' || route.type === 'page-api') {
return true;
}
return false;
});
// If there's no pages entries, then we are in app-dir-only mode
if (!hasPagesEntries) {
appDirOnly = true;
}
const manifestLoader = new TurbopackManifestLoader({
buildId,
distDir,
encryptionKey
});
const currentEntrypoints = await rawEntrypointsToEntrypoints(entrypoints);
const promises = [];
if (!appDirOnly) {
for (const [page, route] of currentEntrypoints.page){
promises.push(handleRouteType({
page,
route,
manifestLoader
}));
}
}
for (const [page, route] of currentEntrypoints.app){
promises.push(handleRouteType({
page,
route,
manifestLoader
}));
}
await Promise.all(promises);
await Promise.all([
// Only load pages router manifests if not app-only
...!appDirOnly ? [
manifestLoader.loadBuildManifest('_app'),
manifestLoader.loadPagesManifest('_app'),
manifestLoader.loadFontManifest('_app'),
manifestLoader.loadPagesManifest('_document'),
manifestLoader.loadClientBuildManifest('_error'),
manifestLoader.loadBuildManifest('_error'),
manifestLoader.loadPagesManifest('_error'),
manifestLoader.loadFontManifest('_error')
] : [],
entrypoints.instrumentation && manifestLoader.loadMiddlewareManifest('instrumentation', 'instrumentation'),
entrypoints.middleware && await manifestLoader.loadMiddlewareManifest('middleware', 'middleware')
]);
manifestLoader.writeManifests({
devRewrites: undefined,
productionRewrites: rewrites,
entrypoints: currentEntrypoints
});
if (NextBuildContext.analyze) {
await project.writeAnalyzeData(appDirOnly);
}
const shutdownPromise = project.shutdown();
const time = process.hrtime(startTime);
return {
duration: time[0] + time[1] / 1e9,
buildTraceContext: undefined,
shutdownPromise
};
} catch (err) {
await project.shutdown();
throw err;
}
}
let shutdownPromise;
export async function workerMain(workerData) {
var _config_experimental;
// setup new build context from the serialized data passed from the parent
Object.assign(NextBuildContext, workerData.buildContext);
/// load the config because it's not serializable
const config = NextBuildContext.config = await loadConfig(PHASE_PRODUCTION_BUILD, NextBuildContext.dir, {
debugPrerender: NextBuildContext.debugPrerender,
reactProductionProfiling: NextBuildContext.reactProductionProfiling
});
// Matches handling in build/index.ts
// https://github.com/vercel/next.js/blob/84f347fc86f4efc4ec9f13615c215e4b9fb6f8f0/packages/next/src/build/index.ts#L815-L818
// Ensures the `config.distDir` option is matched.
if (hasCustomExportOutput(NextBuildContext.config)) {
NextBuildContext.config.distDir = '.next';
}
// Clone the telemetry for worker
const telemetry = new Telemetry({
distDir: NextBuildContext.config.distDir
});
setGlobal('telemetry', telemetry);
// Install bindings early so we can access synchronously later
await installBindings((_config_experimental = config.experimental) == null ? void 0 : _config_experimental.useWasmBinary);
try {
const { shutdownPromise: resultShutdownPromise, buildTraceContext, duration } = await turbopackBuild();
shutdownPromise = resultShutdownPromise;
return {
buildTraceContext,
duration
};
} finally{
// Always flush telemetry before worker exits (waits for async operations like setTimeout in debug mode)
await telemetry.flush();
}
}
export async function waitForShutdown() {
if (shutdownPromise) {
await shutdownPromise;
}
}
//# sourceMappingURL=impl.js.map

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,70 @@
import path from 'path';
import { Worker } from '../../lib/worker';
import { NextBuildContext } from '../build-context';
async function turbopackBuildWithWorker() {
try {
const worker = new Worker(path.join(__dirname, 'impl.js'), {
exposedMethods: [
'workerMain',
'waitForShutdown'
],
enableWorkerThreads: true,
debuggerPortOffset: -1,
isolatedMemory: false,
numWorkers: 1,
maxRetries: 0,
forkOptions: {
env: {
NEXT_PRIVATE_BUILD_WORKER: '1'
}
}
});
const { nextBuildSpan, // Config is not serializable and is loaded in the worker.
config: _config, ...prunedBuildContext } = NextBuildContext;
const { buildTraceContext, duration } = await worker.workerMain({
buildContext: prunedBuildContext
});
return {
// destroy worker when Turbopack has shutdown so it's not sticking around using memory
// We need to wait for shutdown to make sure filesystem cache is flushed
shutdownPromise: worker.waitForShutdown().then(()=>{
worker.end();
}),
buildTraceContext,
duration
};
} catch (err) {
// When the error is a serialized `Error` object we need to recreate the `Error` instance
// in order to keep the consistent error reporting behavior.
if (err.type === 'Error') {
const error = Object.defineProperty(new Error(err.message), "__NEXT_ERROR_CODE", {
value: "E394",
enumerable: false,
configurable: true
});
if (err.name) {
error.name = err.name;
}
if (err.cause) {
error.cause = err.cause;
}
error.message = err.message;
error.stack = err.stack;
throw error;
}
throw err;
}
}
export function turbopackBuild(withWorker) {
const nextBuildSpan = NextBuildContext.nextBuildSpan;
return nextBuildSpan.traceChild('run-turbopack').traceAsyncFn(async ()=>{
if (withWorker) {
return await turbopackBuildWithWorker();
} else {
const build = require('./impl').turbopackBuild;
return await build();
}
});
}
//# sourceMappingURL=index.js.map

View File

@@ -0,0 +1 @@
{"version":3,"sources":["../../../../src/build/turbopack-build/index.ts"],"sourcesContent":["import path from 'path'\n\nimport { Worker } from '../../lib/worker'\nimport { NextBuildContext } from '../build-context'\n\nasync function turbopackBuildWithWorker(): ReturnType<\n typeof import('./impl').turbopackBuild\n> {\n try {\n const worker = new Worker(path.join(__dirname, 'impl.js'), {\n exposedMethods: ['workerMain', 'waitForShutdown'],\n enableWorkerThreads: true,\n debuggerPortOffset: -1,\n isolatedMemory: false,\n numWorkers: 1,\n maxRetries: 0,\n forkOptions: {\n env: {\n NEXT_PRIVATE_BUILD_WORKER: '1',\n },\n },\n }) as Worker & typeof import('./impl')\n const {\n nextBuildSpan,\n // Config is not serializable and is loaded in the worker.\n config: _config,\n ...prunedBuildContext\n } = NextBuildContext\n const { buildTraceContext, duration } = await worker.workerMain({\n buildContext: prunedBuildContext,\n })\n\n return {\n // destroy worker when Turbopack has shutdown so it's not sticking around using memory\n // We need to wait for shutdown to make sure filesystem cache is flushed\n shutdownPromise: worker.waitForShutdown().then(() => {\n worker.end()\n }),\n buildTraceContext,\n duration,\n }\n } catch (err: any) {\n // When the error is a serialized `Error` object we need to recreate the `Error` instance\n // in order to keep the consistent error reporting behavior.\n if (err.type === 'Error') {\n const error = new Error(err.message)\n if (err.name) {\n error.name = err.name\n }\n if (err.cause) {\n error.cause = err.cause\n }\n error.message = err.message\n error.stack = err.stack\n throw error\n }\n throw err\n }\n}\n\nexport function turbopackBuild(\n withWorker: boolean\n): ReturnType<typeof import('./impl').turbopackBuild> {\n const nextBuildSpan = NextBuildContext.nextBuildSpan!\n return nextBuildSpan.traceChild('run-turbopack').traceAsyncFn(async () => {\n if (withWorker) {\n return await turbopackBuildWithWorker()\n } else {\n const build = (require('./impl') as typeof import('./impl'))\n .turbopackBuild\n return await build()\n }\n })\n}\n"],"names":["path","Worker","NextBuildContext","turbopackBuildWithWorker","worker","join","__dirname","exposedMethods","enableWorkerThreads","debuggerPortOffset","isolatedMemory","numWorkers","maxRetries","forkOptions","env","NEXT_PRIVATE_BUILD_WORKER","nextBuildSpan","config","_config","prunedBuildContext","buildTraceContext","duration","workerMain","buildContext","shutdownPromise","waitForShutdown","then","end","err","type","error","Error","message","name","cause","stack","turbopackBuild","withWorker","traceChild","traceAsyncFn","build","require"],"mappings":"AAAA,OAAOA,UAAU,OAAM;AAEvB,SAASC,MAAM,QAAQ,mBAAkB;AACzC,SAASC,gBAAgB,QAAQ,mBAAkB;AAEnD,eAAeC;IAGb,IAAI;QACF,MAAMC,SAAS,IAAIH,OAAOD,KAAKK,IAAI,CAACC,WAAW,YAAY;YACzDC,gBAAgB;gBAAC;gBAAc;aAAkB;YACjDC,qBAAqB;YACrBC,oBAAoB,CAAC;YACrBC,gBAAgB;YAChBC,YAAY;YACZC,YAAY;YACZC,aAAa;gBACXC,KAAK;oBACHC,2BAA2B;gBAC7B;YACF;QACF;QACA,MAAM,EACJC,aAAa,EACb,0DAA0D;QAC1DC,QAAQC,OAAO,EACf,GAAGC,oBACJ,GAAGjB;QACJ,MAAM,EAAEkB,iBAAiB,EAAEC,QAAQ,EAAE,GAAG,MAAMjB,OAAOkB,UAAU,CAAC;YAC9DC,cAAcJ;QAChB;QAEA,OAAO;YACL,sFAAsF;YACtF,wEAAwE;YACxEK,iBAAiBpB,OAAOqB,eAAe,GAAGC,IAAI,CAAC;gBAC7CtB,OAAOuB,GAAG;YACZ;YACAP;YACAC;QACF;IACF,EAAE,OAAOO,KAAU;QACjB,yFAAyF;QACzF,4DAA4D;QAC5D,IAAIA,IAAIC,IAAI,KAAK,SAAS;YACxB,MAAMC,QAAQ,qBAAsB,CAAtB,IAAIC,MAAMH,IAAII,OAAO,GAArB,qBAAA;uBAAA;4BAAA;8BAAA;YAAqB;YACnC,IAAIJ,IAAIK,IAAI,EAAE;gBACZH,MAAMG,IAAI,GAAGL,IAAIK,IAAI;YACvB;YACA,IAAIL,IAAIM,KAAK,EAAE;gBACbJ,MAAMI,KAAK,GAAGN,IAAIM,KAAK;YACzB;YACAJ,MAAME,OAAO,GAAGJ,IAAII,OAAO;YAC3BF,MAAMK,KAAK,GAAGP,IAAIO,KAAK;YACvB,MAAML;QACR;QACA,MAAMF;IACR;AACF;AAEA,OAAO,SAASQ,eACdC,UAAmB;IAEnB,MAAMrB,gBAAgBd,iBAAiBc,aAAa;IACpD,OAAOA,cAAcsB,UAAU,CAAC,iBAAiBC,YAAY,CAAC;QAC5D,IAAIF,YAAY;YACd,OAAO,MAAMlC;QACf,OAAO;YACL,MAAMqC,QAAQ,AAACC,QAAQ,UACpBL,cAAc;YACjB,OAAO,MAAMI;QACf;IACF;AACF","ignoreList":[0]}