Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions components/Index/Hero.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@
<script>
import { Swiper, SwiperSlide } from 'vue-awesome-swiper'

import 'swiper/swiper-bundle.min.css'

export default {
name: 'Hero',
components: {
Expand Down
2 changes: 1 addition & 1 deletion nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default {
},

// Global CSS (https://go.nuxtjs.dev/config-css)
css: ['@/assets/css/animate.min.css'],
css: ['@/assets/css/animate.min.css', 'swiper/swiper-bundle.min.css'],

// Plugins to run before rendering page (https://go.nuxtjs.dev/config-plugins)
plugins: [
Expand Down
2 changes: 1 addition & 1 deletion plugins/apollo-client-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const middleware = new ApolloLink((operation, forward) => {
})

export const afterware = new ApolloLink((operation, forward) => {
return forward(operation).map(() => {
return forward(operation).map((response) => {
/**
* Check for session header and update session in local storage accordingly.
*/
Expand Down