VuepressでGoogle AdSense広告を表示する

VuepressでGoogle AdSense広告を表示できるようにします.

本稿の設定の利点は,自分で広告コードを貼り付ける必要がなくなることです.

# Google AdSenseに登録

を参照してください.

# .vuepress/config.jsの書き換え

以下のコードをに追記します.

module.exports = {
  ...
  head: [
    ...
    [
      "script",
      {
        "async src": "//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"
      }
    ],
    [
      "script",
      {},
      '(adsbygoogle = window.adsbygoogle || []).push({  google_ad_client: "ca-pub-0000000000000000",  enable_page_level_ads: true });'
    ]
  ],
  ...
}

あとは,Google AdSense (opens new window)に飛んで,自動最適化の設定をします.

# 参考サイト

Google AdSense (opens new window)

VuePress に広告を表示する (opens new window)

VuePress に広告を表示する2 (opens new window)

PythonでBig Queryを操作する

PythonでBig Queryを操作する

PythonでBig Queryを操作します.

Vuepressで数式を記述できるようにする

Vuepressで数式を記述できるようにする

Vuepressで数式を記述できるようにします.