美文网首页
7.CleanwebpackPlugin

7.CleanwebpackPlugin

作者: 风雪之隅_b6f7 | 来源:发表于2019-03-26 11:24 被阅读0次

    1.npm install--save-dev clean-webpack-plugin

    const CleanWebpackPlugin=require('clean-webpack-plugin');

    const path=require('path');

    module.exports={

    entry:'index.js',

    output:{

           path:path.resolve(__dirname,'./dist'),

         filename:'index_bundle.js'

        },

    plugins: [ 

                 new CleanWebpackPlugin(['dist'])//自动删除打包之前的dist文件目录

               ]

    };

    相关文章

      网友评论

          本文标题:7.CleanwebpackPlugin

          本文链接:https://www.haomeiwen.com/subject/rafgvqtx.html