I'm using the Aurelia-Cli to build an aurelia-app.
In the src folder I have app.js and app.html, now I'm adding an app.scss file.
I then require, as the documentation suggests in app.html:
<require from="./app.css"></require>
Unfortunately this throws an error saying h.load is not a function and unhandled rejection error: Failed loading required CSS file: app.css
I tried require "app.css", "app.scss", sadly, none of them work.
Can anyone point me in the right direction? I'm assuming this is a very simple problem
Thanks