UNPKG

@connellrobert/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) 419 B
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({ cleanOnceBeforeBuildPatterns: ['./dist/*'] })); }); return configs; }