# Dequeuing Assets

**URL:** https://discourse.roots.io/t/dequeuing-assets/5552
**Category:** sage
**Created:** 2015-12-20T09:43:35Z
**Posts:** 3

## Post 1 by @dmonaldo — 2015-12-20T09:43:35Z

I’m able to dequeue assets in extras.php, but cannot add the file into the asset pipeline. Not sure, but buddypress.css is not being included in main.css. An excerpt from my manifest.json is below.

```
"main.css": {
  "files": [
    "styles/main.scss"
  ],
  "vendor": [
    "../../../plugins/buddypress/bp-templates/bp-legacy/css/buddypress.css"
  ],
  "main": true
},
```

Any ideas why?

---

## Post 2 by @smutek — 2015-12-20T18:31:55Z

I’m not in front of my computer but it looks like you’re going one directory too high, try-

`../../stuff`

Also, make sure you stop your watch task and run gulp to rebuild everything.

Ps. Note that the vendor property is considered as being relative to the themes root - so your path is actually putting you in the site root

See

> [@Sage Gulp Jshint - Trouble passing plugins](https://discourse.roots.io/t/sage-gulp-jshint-trouble-passing-plugins/3181/8):
>
> You know what? It’s probably because I intended vendor to be outside the assets folder. Try “assets/scripts/plugins/jquery.matchHeight.js” I really need to document the “vendor” property better. [https://github.com/austinpray/asset-builder/issues/25](https://github.com/austinpray/asset-builder/issues/25)

And, for a thorough explanation see:

[https://github.com/austinpray/asset-builder/issues/25](https://github.com/austinpray/asset-builder/issues/25)

---

## Post 3 by @dmonaldo — 2015-12-20T18:52:25Z

Thank you, I was one directory too high. It works now.
