Jason Miller
Jason Miller
Hmm - that wouldn't allow for setting parameters since each has a child build. Perhaps the ssr-bundle could be omitted from the parent compiler's assets..
When using multiple webpack entries, you must tell prerender-loader which to include: ```diff entry: [ "webpack-hot-middleware/client?reload=true&path=/__webpack_hmr", "@babel/polyfill", "./src/index.js", //
Good question! It's actually entirely up to you. If your app does its entire initial rendering synchronously, you'll get that as the pre-rendered HTML. In a lot of cases, it...
Ah yes, I should add an option for this.
It's likely timing out.
There is an Easter egg for this... FWIW you can generate pretty much the same output using [babel-preset-modernize](https://github.com/developit/babel-preset-modernize), which is what this uses.
This is bound to happen for very large JavaScript bundles. I've just updated the service to explicitly prevent bundles larger than 2MB (uncompressed), and there is now an execution time...
@rschristian I think they could be clearer about this, yes. The docs should say "using a simpler or faster loader to handle non-JS syntax, like Sucrase". The idea isn't necessarily...
That log isn't an error, it's just a warning that google-analytics was blocked (third party scripts are blocked because they're usually meaningless within the context of this tool). What do...
I think the correct solution here isn't to make dev mode support localhost, it will be to provide a command-line version of this tool that has access to localhost in...