mirror of https://github.com/webpack/webpack.git
17 lines
301 B
JavaScript
17 lines
301 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
// enable debug logging to see network requests!
|
|
// stats: {
|
|
// loggingDebug: /HttpUriPlugin/
|
|
// },
|
|
experiments: {
|
|
buildHttp: [
|
|
"https://cdn.esm.sh/",
|
|
"https://cdn.skypack.dev/",
|
|
"https://jspm.dev/",
|
|
/^https:\/\/unpkg\.com\/.+\?module$/
|
|
]
|
|
}
|
|
};
|