You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AMD is no longer a popular format, making it a likely distant fourth contender to ES Modules, CommonJS and globals. The problems AMD solves have been moved elsewhere - typically into the realm of module bundlers like Webpack and Rollup. Instead of asynchronous loading as a feature of our chosen module formats, it's an implementation detail of our chosen bundler.
We can remove AMD to save bytes as the article mentioned.
functionDisqusJS(config){}// attempt to export for CommonJStry{module.exports=DisqusJS;}catch(e){}
The text was updated successfully, but these errors were encountered:
As this article said,
We can remove AMD to save bytes as the article mentioned.
The text was updated successfully, but these errors were encountered: