This commit is contained in:
Lee
2024-07-30 21:29:32 +01:00
parent 179b5eb9d2
commit 35e786d9a5
9 changed files with 875 additions and 202 deletions

View File

@ -1,4 +1,4 @@
const HASTE_URL: string = "https://paste.fascinated.cc";
const PASTE_URL: string = "https://paste.fascinated.cc";
/**
* Creates a new haste with the given content.
@ -7,11 +7,11 @@ const HASTE_URL: string = "https://paste.fascinated.cc";
* @returns the URL of the created haste
*/
export async function createHaste(content: string): Promise<string> {
const response = await fetch(`${HASTE_URL}/api/upload`, {
const response = await fetch(`${PASTE_URL}/api/upload`, {
method: "POST",
body: content,
});
const { id } = await response.json();
return `${HASTE_URL}/${id}`;
return `${PASTE_URL}/${id}`;
}

9
src/instrumentation.ts Normal file
View File

@ -0,0 +1,9 @@
export async function register() {
if (process.env.NEXT_RUNTIME === 'nodejs') {
await import('../sentry.server.config');
}
if (process.env.NEXT_RUNTIME === 'edge') {
await import('../sentry.edge.config');
}
}