How to include an external css file using Webpack and Angular2?

前端 未结 4 987
慢半拍i
慢半拍i 2021-01-18 01:29

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\         


        
4条回答
  •  抹茶落季
    2021-01-18 02:05

    What did the trick was to load css as raw text in the webpack.config.js

    {
        test: /\.css$/,
        loader: 'raw!postcss'
    },
    

    regards

提交回复
热议问题