Browse Source

fix: error page missing lodash

pull/760/head
Nick 5 years ago
parent
commit
0eac78977a
2 changed files with 2 additions and 1 deletions
  1. 2
      client/components/login.vue
  2. 1
      server/master.js

2
client/components/login.vue

@ -10,7 +10,7 @@
offset-lg3, lg6
offset-xl4, xl4
)
transition(name='zoom')
transition(name='fadeUp')
v-card.elevation-5.md2(v-show='isShown')
v-toolbar(color='primary', flat, dense, dark)
v-spacer

1
server/master.js

@ -8,6 +8,7 @@ const favicon = require('serve-favicon')
const http = require('http')
const https = require('https')
const path = require('path')
const _ = require('lodash')
const { ApolloServer } = require('apollo-server-express')
// const oauth2orize = require('oauth2orize')

Loading…
Cancel
Save