This commit is contained in:
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
// paths.js file
|
// paths.js file
|
||||||
|
|
||||||
let paths = {};
|
const paths = {};
|
||||||
|
|
||||||
// Directory locations.
|
// Directory locations.
|
||||||
paths.assetsDir = "_assets/"; // The files Gulp will handle.
|
paths.assetsDir = "_assets/"; // The files Gulp will handle.
|
||||||
@ -70,4 +70,4 @@ paths.sprocketsDirs = {
|
|||||||
images: []
|
images: []
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = paths;
|
export {paths};
|
||||||
|
|||||||
@ -19,7 +19,7 @@ import sourcemaps from "gulp-sourcemaps";
|
|||||||
import terser from "gulp-terser";
|
import terser from "gulp-terser";
|
||||||
|
|
||||||
// Include paths file.
|
// Include paths file.
|
||||||
import * as paths from "./_assets/gulp_config/paths";
|
import {paths} from "_assets/gulp_config/paths";
|
||||||
import {render} from "node-sass";
|
import {render} from "node-sass";
|
||||||
|
|
||||||
const browserSync = create("gulpfile");
|
const browserSync = create("gulpfile");
|
||||||
|
|||||||
Reference in New Issue
Block a user