Steven Truesdell

Results 19 comments of Steven Truesdell

Try adding Symbol to the polyfill.io include.

Checkout my [comment](https://github.com/ctrlplusb/react-universally/issues/330#issuecomment-296320990) for #330

I dont think it will be a 1:1 replacement for HappyPack. Main reason is HappyPack allows bundling to happen on different threads. Would be curious to see if running them...

@birkir if you change the HappyPack plugin to look like this ``` import os from 'os'; import { execSync } from 'child_process'; import appRootDir from 'app-root-dir'; import HappyPack from 'happypack';...

I've been thinking about a solution to this issue for a while now. Rather than creating the server bundle during development, what about running the server as is. By reconfiguring...

@designspin If you will link me a repo where you're having issues, I'll take a look.

Something like this in the HTML component will lessen the effect, if not solve it completely. ```javascript ${ _.keys(assets.css).length === 0 ? `${ // $FlowIssue require('../styles/normalize.css')._style + // $FlowIssue require('../components/App/styles.scss')._style...

I'm probably going to present an unpopular opinion, but I've basically grown accustomed to the FOUC. It's been so common that I've accepted it as part of the game. I...

Accept that it happens in development. 9.9999/10 if will not happen in production. Most of the time during development the cause is styled-components or a Webpack loader. Once the styles...