Olá, pessoal!
Na resposta do exercício, o código exibido é o seguinte:
plugins.push(
new webpack.ProvidePlugin({
jQuery: 'jquery/dist/jquery.js',
$: 'jquery/dist/jquery.js'
})
);
Porém, no vídeo, o código feito é o seguinte:
plugins.push(
new webpack.ProvidePlugin({
'$': 'jquery/dist/jquery.js',
'jQuery': 'jquery/dist/jquery.js'
})
);
O uso dessas aspas simples não é necessário?