webpack4之loaders

注意:

  • webpack4的webpak.config.js文件中的loaders已经改为了rules,如下:*

    module:{
    rules:[{
    test:/.html$/,
    loader:'html-loader'
    },{
    test:/.vue$/,
    loader:'vue-loader'
    },{
    test:/.scss$/,
    loader:'style-loader!css-loader!sass-loader'
    }]
    }

猜你喜欢

转载自blog.51cto.com/13249979/2376015