You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You need the `ember-cli-node-assets` package to be able to import the CSS file into your application. Then you need to add the reset file to the `ember-cli` build file.
19
+
20
+
```bash
21
+
$ npm install --save-dev ember-cli-node-assets
22
+
```
23
+
24
+
```js
25
+
// ember-cli-build.js
26
+
module.exports=function(defaults) {
27
+
constapp=newEmberApp(defaults, {
28
+
nodeAssets: {
29
+
'simple-css-reset': {
30
+
import: ['reset.css']
31
+
}
32
+
}
33
+
});
34
+
};
35
+
```
36
+
37
+
### Webpack
38
+
39
+
Assuming you have properly installed and configured [CSS loader](https://github.com/webpack-contrib/css-loader), you can simply require the `reset.css` file within the entry point of your app.
0 commit comments