Astro #2:実行してみる


1. Astroの開発サーバーを起動する
astro.config.mjs を以下のように編集しておくと、Astro起動時にブラウザが自動でサーバーを開いてくれる。
import { defineConfig } from 'astro/config';

export default defineConfig({
  server: {
    host: true,
    open: true
  },
});
VSCodeのエクスプローラで "NPM Script" にチェックを付け表示させておくと
エクスプローラー上から実行できるようになるので便利。

0 件のコメント:

その他の記事