# 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
}
]
]
}