html-withimg-loader与html-loader冲突

1.使用了html-loader来加载代码片段

2.用html-withimg-loader 来打包html 里的Img

但是这两个loader 要冲突

正确加载片段 图片地址就不能正确打包

正确打包图片,html片段就不能加载


 <%= require('html-loader!./layout/html-head.html') %>




module: {

        loaders: [

            {

                test: /\.css$/,

                use: ExtractTextPlugin.extract({

                    fallback: "style-loader",

                    use: "css-loader"

                })

            },

            {

                test: /\.(gif|png|jpg|woff|svg|eot|ttf)\??.*$/,

                use: 'url-loader?limit=100&name=resource/[name].[ext]'

            },

            {

                test: /\.(htm|html)$/i,

                use: ['html-withimg-loader']

            }

        ]

    },


烙印99
浏览 586回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript