From ca67bfab1ca7e24291ab496206ddc2c026112871 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Fri, 21 Jul 2023 22:13:45 +0200 Subject: [PATCH] Fix import syntax --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index ecb56bb..ff15d6a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -20,9 +20,9 @@ import terser from "gulp-terser"; // Include paths file. import {paths} from "./_assets/gulp_config/paths.js"; -import {render} from "node-sass"; +import * as dartSass from "sass"; -const gulpSass = sass(render); +const gulpSass = sass(dartSass); const browserSync = create("gulpfile"); // Uses Sass compiler to process styles, adds vendor prefixes, minifies, then