From 6fafa94b11bca45a537b519c98a4418fa983b529 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20D=C4=9Bdi=C4=8D?= Date: Sun, 22 Dec 2024 19:21:59 +0100 Subject: [PATCH] Not replacing u0085 which is no longer present --- gulpfile.js | 1 - 1 file changed, 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 5d8e249e..533ade2f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -15,7 +15,6 @@ gulp.task("build:frontend", () => .src("src/frontend/index.ts") .pipe(webpack(frontendWebpackConfig(undefined, {}))) .pipe(filter(["index.html"])) - .pipe(replace("\u0085", "\\u0085")) .pipe(gulp.dest("dist/")), );