chore: remove html webpack plugin

This commit is contained in:
Ricardo Arturo Cabral Mejia
2022-02-01 13:15:27 +00:00
parent 3bb1ffaab4
commit 280218f778
2 changed files with 2 additions and 8 deletions

View File

@@ -6,11 +6,10 @@
"vue": "3" "vue": "3"
}, },
"devDependencies": { "devDependencies": {
"html-webpack-plugin": "^5.5.0",
"webpack": "^5.65.0", "webpack": "^5.65.0",
"webpack-cli": "^4.9.1" "webpack-cli": "^4.9.1"
}, },
"scripts": { "scripts": {
"build": "webpack" "build": "mkdir -p dist/ && cp index.html dist/ && webpack"
} }
} }

View File

@@ -18,10 +18,5 @@ module.exports = {
stream: 'readable-stream/readable.js', stream: 'readable-stream/readable.js',
crypto: false crypto: false
} }
}, }
plugins: [
new HtmlWebpackPlugin({
template: 'index.html'
})
],
} }