diff --git a/go/bundle.js b/go/bundle.js index 1e33eec8..eeeeddde 100644 --- a/go/bundle.js +++ b/go/bundle.js @@ -157124,21 +157124,19 @@ ${"-".repeat(err.pos)}^`; ? `` : ""; - let libraryTags = ''; - const libraries = project.libraries; - libraries.forEach(library => { - if (library.endsWith('.js')) { - libraryTags += ` - `; - } else if (library.endsWith('.css')) { - libraryTags += ` - `; - } else { - // Assuming it's a Google font - libraryTags += ` - `; - } - }); + // Iterate over each library + let scriptTags = ''; + let cssTags = ''; + project.libraries.forEach(library => { + if (library.endsWith('.js')) { + scriptTags += `\n `; + } else if (library.endsWith('.css')) { + cssTags += `\n`; + } else { + // Assuming it's a Google font + cssTags += `\n`; + } + }); // render html return ` @@ -157148,7 +157146,7 @@ ${"-".repeat(err.pos)}^`; - ${libraryTags} + ${cssTags} ${addConsoleCSS} ${showConsole} @@ -157156,7 +157154,7 @@ ${"-".repeat(err.pos)}^`;
${project.html} - + ${scriptTags}