We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31b6d6e commit 446f97fCopy full SHA for 446f97f
nginx.conf
@@ -1,3 +1,5 @@
1
+charset utf-8;
2
+
3
server {
4
listen 80;
5
root /usr/share/nginx/html;
src/pages/[...slug].md.ts
@@ -94,9 +94,5 @@ ${doc.data.description ? `\n${doc.data.description}\n` : ''}
94
${cleanedContent}
95
`;
96
97
- return new Response(markdown, {
98
- headers: {
99
- 'Content-Type': 'text/plain; charset=utf-8',
100
- },
101
- });
+ return new Response(markdown);
102
};
src/pages/llms-full.txt.ts
@@ -193,9 +193,5 @@ ${cleanedContent}
193
194
const fullContent = parts.join('\n');
195
196
- return new Response(fullContent, {
197
198
199
200
+ return new Response(fullContent);
201
0 commit comments