Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 1.14 KB

TODO.md

File metadata and controls

23 lines (19 loc) · 1.14 KB

Deploying apps

example of uglify -> minified version!

    plugins: [
        //new webpack.optimize.DedupePlugin(), optional (experimental) but can help with bundle size
        new webpack.optimize.UglifyJsPlugin({
            compress: {
                warnings: false
            },
        }),
    ],

XXX: should we do some sample bundle size comparisons? numbers are always good as they give some more concrete idea of the differences. ie non-minified vs. minified vs. various cases (single bundle vs. multiple)