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:
41
apps/public-web/node_modules/next/dist/client/next-turbopack.js
generated
vendored
Normal file
41
apps/public-web/node_modules/next/dist/client/next-turbopack.js
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
// A client-side entry point for Turbopack builds. Includes logic to load chunks,
|
||||
// but does not include development-time features like hot module reloading.
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
require("../lib/require-instrumentation-client");
|
||||
const _ = require("./");
|
||||
const _fouc = require("./dev/fouc");
|
||||
window.next = {
|
||||
version: _.version,
|
||||
turbopack: true,
|
||||
// router is initialized later so it has to be live-binded
|
||||
get router () {
|
||||
return _.router;
|
||||
},
|
||||
emitter: _.emitter
|
||||
};
|
||||
self.__next_set_public_path__ = ()=>{};
|
||||
self.__webpack_hash__ = '';
|
||||
(0, _.initialize)({}).then(()=>{
|
||||
// for the page loader
|
||||
;
|
||||
self.__turbopack_load_page_chunks__ = (page, chunksData)=>{
|
||||
const chunkPromises = chunksData.map((c)=>__turbopack_load__(c));
|
||||
Promise.all(chunkPromises).catch((err)=>console.error('failed to load chunks for page ' + page, err));
|
||||
};
|
||||
return (0, _.hydrate)({
|
||||
beforeRender: _fouc.displayContent
|
||||
});
|
||||
}).catch((err)=>{
|
||||
console.error('Error was not caught', err);
|
||||
});
|
||||
|
||||
if ((typeof exports.default === 'function' || (typeof exports.default === 'object' && exports.default !== null)) && typeof exports.default.__esModule === 'undefined') {
|
||||
Object.defineProperty(exports.default, '__esModule', { value: true });
|
||||
Object.assign(exports.default, exports);
|
||||
module.exports = exports.default;
|
||||
}
|
||||
|
||||
//# sourceMappingURL=next-turbopack.js.map
|
||||
Reference in New Issue
Block a user