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:
21
apps/public-web/node_modules/next/dist/esm/client/app-next-turbopack.js
generated
vendored
Normal file
21
apps/public-web/node_modules/next/dist/esm/client/app-next-turbopack.js
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
import { appBootstrap } from './app-bootstrap';
|
||||
import { isRecoverableError } from './react-client-callbacks/on-recoverable-error';
|
||||
window.next.turbopack = true;
|
||||
self.__webpack_hash__ = '';
|
||||
// eslint-disable-next-line @next/internal/typechecked-require
|
||||
const instrumentationHooks = require('../lib/require-instrumentation-client');
|
||||
appBootstrap((assetPrefix)=>{
|
||||
const { hydrate } = require('./app-index');
|
||||
try {
|
||||
hydrate(instrumentationHooks, assetPrefix);
|
||||
} finally{
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
const enableCacheIndicator = process.env.__NEXT_CACHE_COMPONENTS;
|
||||
const { getOwnerStack } = require('../next-devtools/userspace/app/errors/stitched-error');
|
||||
const { renderAppDevOverlay } = require('next/dist/compiled/next-devtools');
|
||||
renderAppDevOverlay(getOwnerStack, isRecoverableError, enableCacheIndicator);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
//# sourceMappingURL=app-next-turbopack.js.map
|
||||
Reference in New Issue
Block a user