Working with themes documentation

On the Working with themes: Setup Development Environment: Create webpack.mix.js documentation, I see this code:

mix.webpackConfig({
    externals: {
        jquery: 'jQuery',
        bootstrap: true,
        vue: 'Vue',
        moment: 'moment'
    }
});

On the bootstrap line, shouldn’t it be the bootstrap handle instead of ‘True’?

mix.webpackConfig({
    externals: {
        jquery: 'jQuery',
        bootstrap: 'bootstrap',
        vue: 'Vue',
        moment: 'moment'
    }
});

Hi @shahroq - thanks for the post, we’ll have a look. Just a note, we’ve got the Documentation category set up now for Documentation-related questions / fix requests, so feel free to post anything you find in the documentation that you think could use updating / fixing there:

Thx!