Merge branch 'master' into use-build-ci

This commit is contained in:
Anton Korzunov 2020-10-21 18:33:13 +11:00
commit a9afc1817b
3 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
export { default } from './App'
export { default } from './App.tsx'

View File

@ -2,7 +2,7 @@ import 'core-js'
import React from 'react'
import { hydrate } from 'react-dom'
import { loadableReady } from '@loadable/component'
import App from './App'
import App from './App.tsx'
console.log('waiting for application ready...');
loadableReady(() => {

View File

@ -6,7 +6,7 @@ import { ChunkExtractor } from '@loadable/server'
const app = express();
https://github.com/gregberge/loadable-components/issues/634
// https://github.com/gregberge/loadable-components/issues/634
app.use('*/runtime~main.js', async (req, res, next) => {
console.log('delaying runtime chunk');
await new Promise(resolve => setTimeout(resolve, 2000));