mirror of
https://github.com/vx3r/wg-gen-web.git
synced 2024-11-04 17:31:17 +00:00
13 lines
253 B
JavaScript
13 lines
253 B
JavaScript
const {gitDescribe, gitDescribeSync} = require('git-describe');
|
|
process.env.VUE_APP_GIT_HASH = gitDescribeSync().hash;
|
|
|
|
module.exports = {
|
|
devServer: {
|
|
port: 8081,
|
|
disableHostCheck: true,
|
|
},
|
|
"transpileDependencies": [
|
|
"vuetify"
|
|
]
|
|
};
|