res-into-html-webpack-plugin
v0.1.1
Published
webpack-plugin
Downloads
2
Readme
##介绍
将js css 等自动打包到html的body里边
依赖html-webpack-plugin
使用 npm i --save-dev res-into-html-webpack-plugin
const resIntoHtml = require("res-into-html-webpack-plugin");
module.exports = merge(common,{
plugins: [
new resIntoHtml([
`<script src="https://examplexxx.com/xxx.js"></script>`
])
]
});