s/bcrypt/bcryptjs
This commit is contained in:
parent
bb83956e9f
commit
6be84e0998
2 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@
|
|||
"@nuxtjs/auth": "^4.6.5",
|
||||
"@nuxtjs/axios": "^5.5.3",
|
||||
"axios": "^0.19.0",
|
||||
"bcrypt": "^3.0.5",
|
||||
"bcryptjs": "^2.4.3",
|
||||
"body-parser": "^1.18.3",
|
||||
"bootstrap": "4.3.1",
|
||||
"config": "^3.1.0",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
'use strict'
|
||||
const bcrypt = require('bcrypt')
|
||||
const bcrypt = require('bcryptjs')
|
||||
|
||||
module.exports = (sequelize, DataTypes) => {
|
||||
const user = sequelize.define('user', {
|
||||
|
|
Loading…
Reference in a new issue