Przeglądaj źródła

feat(dev): using same style path at production

https://github.com/logseq/logseq-backend/pull/1
Runjuu 5 lat temu
rodzic
commit
2ee5d0a5f0
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      gulpfile.js

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