1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Cloudflare Pages のデプロイに Deno を使う

Posted at

概要

Cloudflare Pages のデプロイ時のビルドコマンドではプリインストールされているツールは設定無しで利用することができ、利用可能なツールはこのページ から確認 できます。npm や pnpm, pip などが最初から入っていますが、誠に遺憾なことに Deno は最初から入っていません (Bun は入ってるのに……)。そのため Deno の場合は少し特殊な設定をする必要があります。

ビルドコマンドの指定

Deno の SSG フレームワークである Lumeドキュメントから引用 ですが、次のワンライナーをビルドコマンドに指定すればよいです。

curl -fsSL https://deno.land/x/install/install.sh | sh && /opt/buildhome/.deno/bin/deno task build
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?