mirror of https://github.com/vuejs/vitepress
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
342 B
14 lines
342 B
4 years ago
|
# Carbon Ads
|
||
|
|
||
|
VitePress has built in native support for [Carbon Ads](https://www.carbonads.net). By defining the Carbon Ads credentials in config, VitePress will display ads on the page.
|
||
|
|
||
|
```js
|
||
|
module.exports = {
|
||
|
carbonAds: {
|
||
|
carbon: 'your-carbon-key',
|
||
|
custom: 'your-carbon-custom',
|
||
|
placement: 'your-carbon-placement'
|
||
|
}
|
||
|
}
|
||
|
```
|