Level 88
Sounds to me that you're doing something funky in your code. What kind of code do you have that requires this?
Basic Larave mix functionality is converting let and const to var, but I would like it not to do this (I have several loops which depends on the let being in the scope). Is there some way to prevent this?
const mix = require('laravel-mix')
mix.js('resources/js/app.js', 'public/js')
.sass('resources/sass/app.scss', 'public/css');
Please or to participate in this conversation.