# Vuepress に adsense をつける

https://github.com/YunYouJun/vuepress-plugin-google-adsense (opens new window) を使います

# Install

yarn add -D vuepress-plugin-google-adsense
# OR npm install -D vuepress-plugin-google-adsense

# 設定

confit.js ファイルの plugins: に以下のように追加



 
 
 
 
 
 
 



module.exports = {
  plugins: [
    [
      'vuepress-plugin-google-adsense',
      {
        'google_ad_client': '', // ca-pub-0000000000000000
        'enable_page_level_ads': true
      }
    ]
  ]
}

サンプル (opens new window)


Last Updated: 2021/2/28 4:31:52