From e90e501bdf6eab04d287affbcae58ee85d562091 Mon Sep 17 00:00:00 2001 From: Vinyl-Davyl Date: Fri, 23 Aug 2024 14:18:14 +0100 Subject: [PATCH] update: development Signed-off-by: Vinyl-Davyl --- src/utils/fetchContent.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/fetchContent.ts b/src/utils/fetchContent.ts index 1578216..87bb8ed 100644 --- a/src/utils/fetchContent.ts +++ b/src/utils/fetchContent.ts @@ -1,5 +1,5 @@ const fetchContent = async (fileName: string): Promise => { - const response = await fetch(`/src/content/${fileName}`); + const response = await fetch(`https://raw.githubusercontent.com/accordproject/template-playground/main/src/content/${fileName}`); if (!response.ok) { throw new Error(`Content not found: ${fileName}`); }