I am trying to add an external reference to a CSS file in Angular2 using Webpack. My css is defined as
{ test: /\\.css$/, loader: \"style-loader!css-loader\
What did the trick was to load css as raw text in the webpack.config.js
{ test: /\.css$/, loader: 'raw!postcss' },
regards