mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-10 07:52:23 +03:00
23 lines
452 B
JavaScript
23 lines
452 B
JavaScript
const isDeployPreview = require('./isDeployPreview')
|
|
|
|
module.exports = [
|
|
[
|
|
'@vuepress/google-analytics',
|
|
{
|
|
ga: isDeployPreview ? '' : 'UA-12818324-8',
|
|
},
|
|
],
|
|
[
|
|
'@vuepress/pwa',
|
|
{
|
|
serviceWorker: false,
|
|
updatePopup: true,
|
|
},
|
|
],
|
|
'@vuepress/plugin-register-components',
|
|
'@vuepress/plugin-active-header-links',
|
|
'@vuepress/plugin-search',
|
|
'@vuepress/plugin-nprogress',
|
|
require('../github/index'),
|
|
]
|