如何在webpack上要求原始的静态html文件

时间:2016-07-31 18:13:00

标签: javascript html node.js npm webpack

我写了一个简单的模板

的test.html

<div>raw text with content</div>

我想做的就是要求原始文件,不做任何修改

喜欢

require('./test.html'); // should return "<div>raw text with content</div>"

我尝试使用extra-text-plugin加载html,但它不起作用

var ExtractTextPlugin = require('extract-text-webpack-plugin'); 

module.exports =
{
    module:
    {
        loaders:
            [
                { test: /\.html$/, loader: 'html' }
            ]
    },
    plugins: [
        new ExtractTextPlugin("[name].html")
    ]
};

1 个答案:

答案 0 :(得分:7)

尝试使用html-loader

 import TestTemplate from 'html!./test.html';