From db1982342103814e3d3f49d652e5ed260664aa7b Mon Sep 17 00:00:00 2001 From: Michal Hojgr Date: Wed, 20 Dec 2017 08:45:06 +0100 Subject: [PATCH] fix: use relative path for scss import This way the package can be included in other projects. The way it was before, it would look for the scss file in the wrong directory (starts looking at the root of ptoject that is including this package) This way, it always knows where to find the scss file and thus this package can be imported in other packages/projects. --- src/assets/scripts/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/assets/scripts/index.js b/src/assets/scripts/index.js index 398c3b2..d448c1d 100755 --- a/src/assets/scripts/index.js +++ b/src/assets/scripts/index.js @@ -1,4 +1,4 @@ -import 'assets/styles/index.scss'; +import '../styles/index.scss'; import './masonry'; import './charts';