How does JSPM deal with CSS files?
Asked Answered
U

2

9

I've been using bower for a while combined with wiredep but I want to switch to using the System.js loader. For this, JSPM is ideal. However, one of the things the combination of bower and wiredep was doing for me was also including the (S)CSS.

Does JSPM deal with these files at all? Or is there a different approach that I should take to also deal with those files?

Unquiet answered 7/7, 2015 at 6:57 Comment(0)
B
12

jspm install css

there is a plugin for this :)

for more infomation: https://github.com/systemjs/plugin-css


update: also, as @Ron said:

use it as <script>System.import('packageName/package.css!')</script>

Badman answered 30/7, 2015 at 4:29 Comment(2)
Then use it as: <script>System.import('packageName/package.css!')</script>Trishtrisha
@Trishtrisha They really need to add that to their docs. Thanks for posting!Irrelievable
B
0

If you are using jspm it's convenient to add this settings to jspm related config.js file

System.config({
  meta: {
    '*.css': { loader: 'css' }
  },
...
}

so you don't need to add a suffix !css each time you import css file

Buffo answered 10/6, 2017 at 19:6 Comment(1)
i add this config but i still need to add '!' to import css fileVarion

© 2022 - 2024 — McMap. All rights reserved.