求解答!!如何配置webpack.config 才能给所有html统一注入外链js和css,避免外链资源被打包进项目。
1 回答
元芳怎么了
TA贡献1798条经验 获得超7个赞
webpack.config.js
new HtmlwebpackPlugin({
template: APP_PATH+'/index.html'
})
index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="外部css">
</head>
<body>
<script>外部js</script>
</body>
</html>
添加回答
举报
0/150
提交
取消