Add `preload` function to be called in module scope
オープン
roadmap
runtime
- 主要言語
- TypeScript
- スター
- 38
- フォーク
- 1
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
The goal is to allow APIs like `React.lazy` to be transformed into SSR friendly code. The transformation itself would be done by a Saus plugin. The `preload` function mentioned in this issue's title will come in handy for injecting `` tags for the rewritten dynamic imports.
```ts
// Before
const Foo = React.lazy(() => import('./Foo'))
// After (SSR only)
import { preload } from 'saus/preload'
import Foo from './Foo'
preload('/src/Foo')
```
コントリビューションガイド
このリポジトリのコントリビューションガイドは索引されていません
評価
この issue はまだ評価されていません。