We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a51c0a6 commit 937b141Copy full SHA for 937b141
gulpfile.js
@@ -377,8 +377,8 @@ function dist_node_modules_css() {
377
378
function dist_ol_css() {
379
return gulp
380
- .src("./node_modules/ol/ol.css", { base: "node_modules" })
381
- .pipe(gulp.dest(DIST_DIR));
+ .src("./node_modules/ol/ol.css")
+ .pipe(gulp.dest(`${DIST_DIR}node_modules/ol`));
382
}
383
384
function dist_less() {
src/css/tabs/gps.less
@@ -1,4 +1,4 @@
1
-@import 'ol/ol.css';
+@import '/node_modules/ol/ol.css';
2
3
#map {
4
height: 100%;
0 commit comments