Requirejs "text!" plugin alternative to webpack

Dmi*_*nko 5 javascript migration requirejs webpack

How to make this work in webpack?

var templateHtml = require("text!templates/main.html");
console.log(templateHtml); // outputs string content of the "main.html" file
Run Code Online (Sandbox Code Playgroud)

I need to migrate from requirejs + require-text plugin to webpack with minimum code changes so I need that loader in webpack... Have any suggestions?

Dmi*_*nko 4

应该使用“text-loader”: https: //www.npmjs.com/package/text-loader

我的错误是我在“text-loader”中使用了text!符号requireloaders配置。