deployment-tools
Version:
A Node.js scripts that helps you to compile and deploy the static assets (CSS/JavaScript/images) of your website without gulp and grunt using Node.js and npm scripts
15 lines (13 loc) • 376 B
JavaScript
const webpackConfig = require('./webpack-config');
module.exports = webpackConfig({
hot: false,
// Don’t use [chunkhash] in development since this will increase compilation time
hash: false,
debug: true,
optimize: false,
saveStats: false,
failOnError: false,
devTool: 'eval',
banner: false, // false otherwise invalid hash logic
progress: true,
});