-
Notifications
You must be signed in to change notification settings - Fork 98
Changing the blog title ブログのタイトルを変更する
Fork easy-notion-blog.git and clone it to your local.
このリポジトリを fork し、ローカルに clone しておきます。
Open app/server-constants.js
in the editor.
app/server-constants.js
をエディタで開きます。
Edit NEXT_PUBLIC_SITE_TITLE
to your own.
NEXT_PUBLIC_SITE_TITLE
を好きなタイトルに変更します。
const NEXT_PUBLIC_SITE_TITLE = 'Great Journey'
Edit NEXT_PUBLIC_SITE_DESCRIPTION
in addition.
ついでに NEXT_PUBLIC_SITE_DESCRIPTION
も変更しておきましょう。
const NEXT_PUBLIC_SITE_DESCRIPTION = 'Logs what I felt in the great journey.'
Both NEXT_PUBLIC_SITE_TITLE
and NEXT_PUBLIC_SITE_DESCRIPTION
are used for Google search results or social media.
NEXT_PUBLIC_SITE_TITLE
と NEXT_PUBLIC_SITE_DESCRIPTION
は Google 検索結果や SNS でシェアされたときの情報に使われます。
Start the local server to check whether the blog can be seen or not.
ローカルサーバーを起動して動作確認します。
$ yarn dev
Open http://localhost:3000 in your browser after running the server.
サーバーが起動したらブラウザで http://localhost:3000 にアクセスします。
If you can see the title you edited, it's success.
タイトルが設定した通りになっていたら成功です。
You push the changes to GitHub, and then they will be deployed.
変更を GitHub に push して Vercel にデプロイすれば反映されます。