Skip to content

Commit e3ac5ca

Browse files
committed
feat: move content to /content
1 parent f800c76 commit e3ac5ca

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed
File renamed without changes.
File renamed without changes.

routes/contributing.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const handler: Handlers<Data> = {
2828
}
2929
try {
3030
const res = await fetch(
31-
new URL("../docs/contributing.md", import.meta.url),
31+
new URL("../content/contributing.md", import.meta.url),
3232
);
3333
if (res.status === 200) {
3434
data = await res.text();

routes/integrating.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const handler: Handlers<Data> = {
2828
}
2929
try {
3030
const res = await fetch(
31-
new URL("../docs/integrating.md", import.meta.url),
31+
new URL("../content/integrating.md", import.meta.url),
3232
);
3333
if (res.status === 200) {
3434
data = await res.text();

0 commit comments

Comments
 (0)