ice-plugin-wrap-externals
v0.1.1
Published
ice plugin for load external scripts
Downloads
3
Readme
ice-plugin-wrap-externlas
Usage:
// ice.config.js
module.exports = {
plugins: [
['ice-plugin-wrap-externals', {
externals: {
react: {
global: 'window.React',
urls: ['https://unpkg.com/[email protected]/umd/react.production.min.js'],
},
'react-dom': {
global: 'window.ReactDOM',
urls: ['https://unpkg.com/[email protected]/umd/react-dom.production.min.js'],
},
},
}],
]
};