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:
25
apps/public-web/node_modules/next/dist/server/lib/fix-mojibake.js
generated
vendored
Normal file
25
apps/public-web/node_modules/next/dist/server/lib/fix-mojibake.js
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
// x-matched-path header can be decoded incorrectly
|
||||
// and should only be utf8 characters so this fixes
|
||||
// incorrectly encoded values
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "fixMojibake", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return fixMojibake;
|
||||
}
|
||||
});
|
||||
function fixMojibake(input) {
|
||||
// Convert each character's char code to a byte
|
||||
const bytes = new Uint8Array(input.length);
|
||||
for(let i = 0; i < input.length; i++){
|
||||
bytes[i] = input.charCodeAt(i);
|
||||
}
|
||||
// Decode the bytes as proper UTF-8
|
||||
const decoder = new TextDecoder('utf-8');
|
||||
return decoder.decode(bytes);
|
||||
}
|
||||
|
||||
//# sourceMappingURL=fix-mojibake.js.map
|
||||
Reference in New Issue
Block a user