From 2ee5d0a5f071f6566bb39a882948a961ab81e64d Mon Sep 17 00:00:00 2001 From: Runjuu Date: Mon, 2 Nov 2020 16:33:07 +0800 Subject: [PATCH] feat(dev): using same style path at production https://github.com/logseq/logseq-backend/pull/1 --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 8baeb3538..1965afd19 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -35,7 +35,7 @@ const css = { _optimizeCSSForRelease() { return gulp.src(path.join(outputPath, 'css', 'style.css')) .pipe(cleanCSS()) - .pipe(gulp.dest(outputPath)) + .pipe(gulp.dest(path.join(outputPath, 'css'))) }, }