From b0fe2c6c9af9a243b287b76371f2359af9942cba Mon Sep 17 00:00:00 2001 From: Jaz Volpert Date: Fri, 4 Oct 2024 13:40:45 -0700 Subject: Serve static assets from a CDN host if provided --- scripts/post-web-build.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/post-web-build.js b/scripts/post-web-build.js index 7bbee3855..5619b251b 100644 --- a/scripts/post-web-build.js +++ b/scripts/post-web-build.js @@ -23,10 +23,10 @@ const outputFile = entrypoints const ext = path.extname(file) if (ext === '.js') { - return `` + return `` } if (ext === '.css') { - return `` + return `` } return '' -- cgit 1.4.1