AMD插件(http://requirejs.org/docs/plugins.html)允许您有条件地加载内容。
示例是文本插件(http://requirejs.org/docs/api.html#text):
require(["requirejs/text!file.txt"], function(myFile){
console.log("contents of file.txt: " + myFile);
});
如何配置webpack(webpack.config.js)以便我可以在代码中继续使用此模式?我基本上想要一个bundle,其中file.txt和我的应用程序的内容都捆绑在一个文件中。