All Downloads are FREE. Search and download functionalities are using the official Maven repository.

archetype-resources.webpack.prod.js Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
const webpack = require('webpack');
const merge = require('webpack-merge');
const common = require('./webpack.common.js');

const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');

module.exports = merge(common, {
   mode: 'production',
   devtool: 'cheap-module-source-map',
   plugins: [
      new OptimizeCssAssetsPlugin()
   ]
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy