Files
csgowtf/vue.config.js
Giovanni Harting f65fc0a0ea
All checks were successful
CSGOWTF/csgowtf/pipeline/pr-master This commit looks good
CSGOWTF/csgowtf/pipeline/head This commit looks good
fixed fonts; fixed relative url paths
2022-11-14 01:28:57 +01:00

11 lines
195 B
JavaScript

const Dotenv = require('dotenv-webpack');
process.env.VUE_APP_VERSION = require('./package.json').version
module.exports = {
configureWebpack: {
plugins: [
new Dotenv()
],
}
}