I am trying to test a plugin that I've been working on. Testing it in the environment set up by @blockly/create-package is working fine, but I'm also trying to test it by using it as a developer might. The simplest way I could think of was to try and add my plugin to something like the blockly-webpack sample. I'm having problems with my plugin when testing it in that way but debugging it is hampered by the fact that the source maps don't appear to be working properly. Here are the errors that I'm seeing:
12:33:31.886 DevTools failed to load source map: Could not load content for webpack:///node_modules/blockly/blockly_compressed.js.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
12:33:31.886 DevTools failed to load source map: Could not load content for webpack:///node_modules/blockly/blocks_compressed.js.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
12:33:31.887 DevTools failed to load source map: Could not load content for webpack:///node_modules/blockly/javascript_compressed.js.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
Any ideas on how to get the source maps to work correctly?
Note that I'm using the blockly-webpack sample by running 'npm start' and going to localhost:3000 in my Chrome browser and the above errors are being generated even when I'm not importing and using my plugin.
Thanks in advance.