mirror of
https://github.com/rowtype-yoga/ry-blocks.git
synced 2024-11-09 17:52:04 +03:00
12 lines
232 B
JavaScript
12 lines
232 B
JavaScript
"use strict";
|
|
|
|
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
|
|
|
|
module.exports = {
|
|
plugins: [
|
|
// This plugin deletes (cleans) the output folder
|
|
// `./dist` in our case
|
|
new CleanWebpackPlugin(),
|
|
],
|
|
};
|