Skip to content

Commit

Permalink
Merge pull request #22 from hcarneiro/master
Browse files Browse the repository at this point in the history
Release to Production
  • Loading branch information
hcarneiro authored Jun 30, 2019
2 parents 9e09d63 + 7e03180 commit 9b2602c
Show file tree
Hide file tree
Showing 8 changed files with 1,366 additions and 256 deletions.
2 changes: 1 addition & 1 deletion components/AdminOverlay.vue
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<script>
/* global textboxio */
import Loading from '~/components/Loading'
import { find } from 'lodash'
import { mapState } from 'vuex'
import Loading from '~/components/Loading'
export default {
components: {
Expand Down
2 changes: 1 addition & 1 deletion layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@

<script>
import $ from 'jquery'
import { mapState } from 'vuex'
import Logo from '~/components/Logo.vue'
import BottomFooter from '~/components/BottomFooter.vue'
import AdminArea from '~/components/AdminArea.vue'
import AdminOverlay from '~/components/AdminOverlay.vue'
import { mapState } from 'vuex'
export default {
components: {
Expand Down
27 changes: 26 additions & 1 deletion nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,34 @@ module.exports = {
// Doc: https://bootstrap-vue.js.org/docs/
'bootstrap-vue/nuxt',
'@nuxtjs/google-analytics',
'@nuxtjs/pwa'
'@nuxtjs/pwa',
'@nuxtjs/sitemap'
],

/*
** Sitemap configuration
*/
sitemap: {
gzip: true,
exclude: [
'/auth',
'/api/**',
'/logout'
],
defaults: {
changefreq: 'monthly',
priority: 0.7,
lastmod: new Date(),
lastmodrealtime: true
},
routes: [
'/work/fliplet-studio-v2',
'/work/nuxtjs-with-basic-authentication',
'/work/sortable-dom-tree',
'/work/the-geek-developer-portfolio'
]
},

/*
** Google Analytics configuration
*/
Expand Down
Loading

0 comments on commit 9b2602c

Please sign in to comment.