fix: migrate setup to vuetify + remove git related steps

This commit is contained in:
NGPixel
2018-03-11 00:11:32 -05:00
parent 16d3336cd0
commit 6baa277f51
10 changed files with 405 additions and 661 deletions

View File

@@ -44,7 +44,7 @@ window.Hammer = Hammer
// Initialize Apollo Client (GraphQL)
// ====================================
const graphQLEndpoint = window.location.protocol + '//' + window.location.host + siteConfig.path + 'graphql'
const graphQLEndpoint = window.location.protocol + '//' + window.location.host + '/graphql'
window.graphQL = new ApolloClient({
link: new BatchHttpLink({
@@ -65,17 +65,7 @@ Vue.use(VueClipboards)
Vue.use(VueSimpleBreakpoints)
Vue.use(localization.VueI18Next)
Vue.use(helpers)
Vue.use(VeeValidate, {
enableAutoClasses: true,
classNames: {
touched: 'is-touched', // the control has been blurred
untouched: 'is-untouched', // the control hasn't been blurred
valid: 'is-valid', // model is valid
invalid: 'is-invalid', // model is invalid
pristine: 'is-pristine', // control has not been interacted with
dirty: 'is-dirty' // control has been interacted with
}
})
Vue.use(VeeValidate, { events: '' })
Vue.use(Vuetify)
Vue.prototype.Velocity = Velocity