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.
30 lines
1.1 KiB
30 lines
1.1 KiB
---
|
|
description: یکپارچهسازی تبلیغات Carbon در سایت ویتپرس با استفاده از پشتیبانی داخلی تم پیشفرض.
|
|
---
|
|
|
|
# تبلیغات Carbon {#carbon-ads}
|
|
|
|
ویتپرس پشتیبانی داخلی برای [Carbon Ads](https://www.carbonads.net/) را دارد. با تعریف مشخصات تبلیغات Carbon در تنظیمات، ویتپرس تبلیغات را در صفحه نمایش میدهد.
|
|
|
|
```js
|
|
export default {
|
|
themeConfig: {
|
|
carbonAds: {
|
|
code: 'your-carbon-code',
|
|
placement: 'your-carbon-placement',
|
|
format: 'classic'
|
|
}
|
|
}
|
|
}
|
|
```
|
|
|
|
این مقادیر برای فراخوانی اسکریپت CDN Carbon به شکل زیر استفاده میشوند.
|
|
|
|
گزینه `format` از مقادیر `classic`، `responsive` و `cover` پشتیبانی میکند.
|
|
|
|
```js
|
|
`//cdn.carbonads.com/carbon.js?serve=${code}&placement=${placement}&format=${format}`
|
|
```
|
|
|
|
برای یادگیری بیشتر درباره پیکربندی تبلیغات Carbon، لطفاً به [وبسایت Carbon Ads](https://www.carbonads.net/) مراجعه کنید.
|