例如,从 CDN 引入 jQuery,而不是把它打包:
index.html
webpack.config.js
module.exports = {
//…
externals: {
jquery: ‘jQuery’
}
};
import $ from ‘jquery’;
$(’.my-element’).animate(/* … */);
例如,从 CDN 引入 jQuery,而不是把它打包:
index.html
webpack.config.js
module.exports = {
//…
externals: {
jquery: ‘jQuery’
}
};
import $ from ‘jquery’;
$(’.my-element’).animate(/* … */);