Skip to content

Commit 2927138

Browse files
authored
Add ga, pwa plugins (#47)
* Fix broken links * Add ga, pwa plugins
1 parent d476c31 commit 2927138

File tree

4 files changed

+313
-3
lines changed

4 files changed

+313
-3
lines changed

docs/.vuepress/config.js

+15-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ module.exports = {
1818
description: 'Patrones útiles de Vue, técnicas, consejos, trucos y enlaces seleccionados.'
1919
}
2020
},
21-
serviceWorker: true,
2221
head: [
2322
[
2423
'link',
@@ -134,6 +133,21 @@ module.exports = {
134133
{ defer: true, async: true, src: 'https://buttons.github.io/buttons.js' },
135134
],
136135
],
136+
plugins: [
137+
[
138+
'@vuepress/pwa',
139+
{
140+
serviceWorker: true,
141+
updatePopup: true
142+
}
143+
],
144+
[
145+
'@vuepress/google-analytics',
146+
{
147+
'ga': 'UA-175336794-1'
148+
}
149+
]
150+
],
137151
themeConfig: {
138152
displayAllHeaders: true,
139153
lastUpdated: 'Last Updated',

docs/patterns/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ export default {
177177
- [Creating Custom Inputs With Vue.js](https://www.smashingmagazine.com/2017/08/creating-custom-inputs-vue-js/)
178178
- [Vue Sibling Component Communication](https://vegibit.com/vue-sibling-component-communication/)
179179
- [Managing State in Vue.js](https://medium.com/fullstackio/managing-state-in-vue-js-23a0352b1c87)
180-
- [Vue.js communication part 2: parent-child components](https://gambardella.info/2017/09/13/vue-js-communication-part-2-parent-child-components/)
180+
- [Vue.js communication part 2: parent-child components](https://gambo.io/vue-js-communication-part-2-parent-child-components/)
181181
- [Design Patterns for Communication Between Vue.js Components](https://code.tutsplus.com/tutorials/design-patterns-for-communication-between-vuejs-component--cms-32354)
182182

183183
## Component Events Handling

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
"docs:deploy": "gh-pages -d docs/.vuepress/dist"
1414
},
1515
"devDependencies": {
16+
"@vuepress/plugin-google-analytics": "^1.5.3",
17+
"@vuepress/plugin-pwa": "^1.5.3",
1618
"gh-pages": "^2.0.1",
1719
"vuepress": "^1.0.1"
1820
}

0 commit comments

Comments
 (0)