feat: TokenGenerator + Hash

This commit is contained in:
CorentinTh 2020-04-25 18:43:17 +02:00
parent 335e626400
commit e1ebeefdc4
No known key found for this signature in database
GPG key ID: 44C26D9F091CEFC7
19 changed files with 610 additions and 135 deletions

18
vue.config.js Normal file
View file

@ -0,0 +1,18 @@
const webpack = require('webpack');
module.exports = {
"transpileDependencies": [
"vuetify"
],
configureWebpack: () => {
return {
plugins: [
new webpack.DefinePlugin({
'process.env': {
'APPLICATION_VERSION': JSON.stringify(require('./package.json').version),
}
})
]
}
}
}