Allow package version to be used in application

This commit is contained in:
Joel Collins 2019-06-05 17:47:36 +01:00
parent 1d6ae5c9da
commit 341d2ae845

View file

@ -1,3 +1,5 @@
var webpack = require('webpack');
module.exports = { module.exports = {
configureWebpack: config => { configureWebpack: config => {
config.target = process.env.VUE_APP_TARGET || 'web', config.target = process.env.VUE_APP_TARGET || 'web',
@ -8,7 +10,14 @@ module.exports = {
} }
:{ :{
main: './src/main.js', main: './src/main.js',
} },
config.plugins.push(
new webpack.DefinePlugin({
'process.env': {
PACKAGE_VERSION: JSON.stringify(require('./package.json').version)
}
})
)
}, },
outputDir: (process.env.VUE_APP_TARGET == 'electron-renderer') ? './app/dist' : './dist', outputDir: (process.env.VUE_APP_TARGET == 'electron-renderer') ? './app/dist' : './dist',
publicPath: '' publicPath: ''