sentry
This commit is contained in:
@ -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
9
src/instrumentation.ts
Normal 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');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user