Fix Terser TypeError: Cannot read property ‘minify’ of undefined

Ravi Teja
1 min readFeb 10, 2019

--

If you are using Laravel mix to compile your assets, after updating mix to the latest version you would have encountered this TypeError while running npm run production.

Install the Terser package and everything will be fine as always.

npm i terser@3.14

--

--