mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 14:56:17 -04:00
feat: TokenGenerator + Hash
This commit is contained in:
parent
1fba5c42e1
commit
d1db2c8601
19 changed files with 610 additions and 135 deletions
18
vue.config.js
Normal file
18
vue.config.js
Normal 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),
|
||||
}
|
||||
})
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue