vue使用raw-loader加载内容,为什么头部会自动加上了不少内容?
我需要加载本地的js文件(js里的内容为alert(1);
),只是作为文本显示,当我使用const data = require('data/a.js')
时,它会使用js loader来加载,于是我使用const a = require('raw-loader!./snippet/ad.js');
加载,但返回的是
,也就是原有内容的基础上头部被自动加上了以下内容:
require("core-js/modules/es.array.iterator.js");require("core-js/modules/es.promise.js");
require("core-js/modules/es.object.assign.js");
require("core-js/modules/es.promise.finally.js");
require("core-js/modules/es.array.map.js");
require("core-js/modules/es.array.find.js");
require("core-js/modules/es.regexp.exec.js");
require("core-js/modules/es.string.match.js");
require("core-js/modules/es.regexp.constructor.js");
require("core-js/modules/es.regexp.to-string.js");
请问是为什么?如果还在只加载原始内容呢?
以上是 vue使用raw-loader加载内容,为什么头部会自动加上了不少内容? 的全部内容, 来源链接: utcz.com/p/935899.html