an image of a forest and water

Notes on Lucky Framework - Part 1

As with my prior post on the Amber framework, Lucky runs into the same issue of Webpack bombing when using later versions of Node (v17.0.1+). When trying to run ./script/setup, you get ERR_OSSL_EVP_UNSUPPORTED.

To fix this, in your webpack.mix.js file, in the .webpackConfig() method add the following:

output: { hashFunction: "xxhash64"}

Reference: link

This article was updated on 25 Oct 2021

Comments