# Module not found: Can't resolve 'slick-carousel/slick/slick.eot'

**URL:** https://discourse.roots.io/t/module-not-found-cant-resolve-slick-carousel-slick-slick-eot/11380
**Category:** sage
**Tags:** sage9
**Created:** 2018-01-19T11:50:02Z
**Posts:** 3

## Post 1 by @BSpoon — 2018-01-19T11:50:02Z

Following the [documentation](https://github.com/roots/docs/blob/sage-9/sage/theme-development-and-building.md#3rd-party-packages), at step 4 I’ve added the relative paths.  
For some reason when I attempt to run `yarn run build` the following error is returned:

> ERROR in ./styles/main.scss  
> Module build failed: ModuleNotFoundError: Module not found: Error: Can’t resolve ‘slick-carousel/slick/slick.eot’

Does anyone have a suggestion as to what could be the cause of this issue?

---

## Post 2 by @mmirus — 2018-01-19T16:19:37Z

Hi @BSpoon,

I tested this by setting up a new copy of Sage and then running:

`yarn add slick-carousel`

Adding this to main.js:

`import 'slick-carousel/slick/slick.min';`

And this to main.scss:

```
@import "~slick-carousel/slick/slick.scss";
@import "~slick-carousel/slick/slick-theme.scss";
```

And finally this to \_variables.scss:

```
$slick-font-path: "~slick-carousel/slick/fonts/";
$slick-loader-path: "~slick-carousel/slick/";
```

Then running:

`yarn build`

And I didn’t receive an error. Can you double check what you added against the above?

---

## Post 3 by @BSpoon — 2018-01-19T17:01:17Z

Hi @mmirus,

Turns out it was a missing slash that caused the issue. :tired_face:

`$slick-font-path: "~slick-carousel/slick/fonts";`

should have been:

`$slick-font-path: "~slick-carousel/slick/fonts/";`

Thank you though for taking your time to help me resolve this.

Happy Weekend :grin:
