Skip to content

Commit

Permalink
fix: replace double quotes with single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
JAHMCRIBM committed Sep 12, 2024
1 parent 13a15e3 commit 6b9a9e4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ui/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ const replace = require("gulp-replace");
gulp.task("default", () => {
return gulp
.src("./dist/*.html")
.pipe(replace('type="module" ', ''))
.pipe(replace('crossorigin ', ''))
.pipe(replace('type="module"', "type='module'"))
.pipe(replace('.js"></script>', '.js" inline></script>'))
.pipe(replace('.css">', '.css" inline>'))
.pipe(
Expand Down

0 comments on commit 6b9a9e4

Please sign in to comment.