Sign in
skia
/
buildbot
/
ce50dfc19368e242e4dfc9656fa7b50417c4e641
/
.
/
ap
/
webpack.prod.js
blob: 4db2668e9db8289e63c0ca7e34e3acfe36d318fd [
file
]
const
merge
=
require
(
'webpack-merge'
);
const
common
=
require
(
'./webpack.config.js'
);
const
MinifyPlugin
=
require
(
"babel-minify-webpack-plugin"
);
module
.
exports
=
merge
(
common
,
{
plugins
:
[
new
MinifyPlugin
({},
{
comments
:
false
,
})
]
});