Closed4

Astro キャッチアップ

HTMLGOHTMLGO

https://docs.astro.build/en/install-and-setup/#install-from-the-cli-wizard

新規プロジェクト作成。Next.jsと似ている

npm create astro@latest

npm script

pakage.json
  "scripts": {
    "dev": "astro dev",
    "start": "astro dev",
    "build": "astro check && astro build",
    "preview": "astro preview",
    "astro": "astro"
  },

こちらがコンフィグファイル

astro.config.mjs

import { defineConfig } from 'astro/config';

// https://astro.build/config
export default defineConfig({});

TSもサポート、以下に3種類のテンプレートtsconfigがある
https://github.com/withastro/astro/tree/main/packages/astro/tsconfigs

このスクラップは2ヶ月前にクローズされました