A simple, no-nonsense CSS reset stylesheet.
$ npm install --save simple-css-reset
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.
$ npm install --save-dev ember-cli-node-assets
// ember-cli-build.js
module.exports = function(defaults) {
const app = new EmberApp(defaults, {
nodeAssets: {
'simple-css-reset': {
import: ['reset.css']
}
}
});
};
Assuming you have properly installed and configured CSS loader, you can simply require the reset.css
file within the entry point of your app.
$ npm install --save-dev css-loader
// index.js
import 'simple-css-reset/reset.css';