ry-blocks/webpack.common.js

12 lines
229 B
JavaScript
Raw Normal View History

2021-12-11 20:27:48 +03:00
"use strict"
2020-08-06 22:49:43 +03:00
2021-12-11 20:27:48 +03:00
const { CleanWebpackPlugin } = require("clean-webpack-plugin")
2020-08-06 22:49:43 +03:00
module.exports = {
plugins: [
// This plugin deletes (cleans) the output folder
// `./dist` in our case
new CleanWebpackPlugin(),
],
2021-12-11 20:27:48 +03:00
}