歴代のVue Fes Japanのスピーカー(セッション・パネルディスカッションの登壇者)を一覧できるサイトです。
Warning
このサイトはVue Fes Japan非公式の@yamanokuの個人プロジェクトのため、Vue Fes Japan公式サイトに関する内容については公式へ直接問い合わせください。
このサイトを作るにあたり、以下を参考にしました。
vp install
vp configVuerend / Vite のアプリとして動きます。lint、format、type check には Vize を使い、日常コマンドは Vite+(vp)経由で実行します。
| 用途 | コマンド |
|---|---|
| 開発サーバ | vp dev |
| Musea Gallery | vp dev 後に /__musea__ |
| ビルド | vp build |
| 静的生成 | vp build |
| プレビュー | vp preview --outDir dist/client |
| Lint | vp run lint |
| Format | vp run format |
| Format Check | vp run format:check |
| Type Check | vp run typecheck |
| Test | vp test run |
| Test(watch) | vp test watch |
GitHub Actions でも同じ Vite+ コマンドを実行します。
vp run lintvp run format:checkvp run typecheckvp test run
vp build で dist/client に静的ファイルを生成します。生成後の確認には vp preview --outDir dist/client を使います。
vp build
vp preview --outDir dist/client