Offline development isn't currently possible #647
Labels
[Type] Bug
An existing feature does not function as intended
[Type] Build Tooling
Issues or PRs related to build tooling
Loading the Gutenberg editor currently blocks on several network requests for JavaScript libraries:
'https://unpkg.com/react@next/umd/react' . $react_suffix . '.js'
'https://unpkg.com/react-dom@next/umd/react-dom' . $react_suffix . '.js'
'https://unpkg.com/react-dom@next/umd/react-dom-server' . $react_suffix . '.js'
'https://fiddle.azurewebsites.net/tinymce/nightly/tinymce.min.js'
This makes it impossible to develop the plugin without an internet connection. Also, with a slow or even less-than-blazing-fast internet connection, this makes load times longer and development more difficult, especially if the "Disable cache" option is checked in the browser's dev tools.
It would be nice to come up with some other way of loading these scripts. For example:
npm run dev
without holding up the rest of the buildThe text was updated successfully, but these errors were encountered: