feat(dev): using same style path at production

https://github.com/logseq/logseq-backend/pull/1
pull/645/head
Runjuu 2020-11-02 16:33:07 +08:00
parent bda846dd17
commit 2ee5d0a5f0
1 changed files with 1 additions and 1 deletions

View File

@ -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')))
},
}