printify-api
Version:
Printify's REST API allows your application to manage a Printify shop on behalf of a Printify Merchant. Create products, submit orders, and more...
17 lines (10 loc) • 391 B
JavaScript
var CleanWebpackPlugin = require('clean-webpack-plugin');
//var JavaScriptObfuscator = require('webpack-obfuscator');
module.exports = function () {
var configs = require('./webpack.development.js')();
configs.forEach(function(config){
config.devtool=false;
config.plugins.push(new CleanWebpackPlugin(['dist/*']));
});
return configs;
}