Enable js asset versioning in dev mode so we can use hotload.

This commit is contained in:
Jan Böhmer 2022-03-05 21:58:43 +01:00
parent ae24fb5eb1
commit 7b244d3034

View file

@ -82,7 +82,8 @@ Encore
.enableBuildNotifications()
.enableSourceMaps(!Encore.isProduction())
// enables hashed filenames (e.g. app.abc123.css)
.enableVersioning(Encore.isProduction())
//.enableVersioning(Encore.isProduction())
.enableVersioning()
.configureBabel((config) => {
config.plugins.push('@babel/plugin-proposal-class-properties');