mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 23:36:15 -04:00
18 lines
352 B
JavaScript
18 lines
352 B
JavaScript
![]() |
const webpack = require('webpack');
|
||
|
|
||
|
module.exports = {
|
||
|
"transpileDependencies": [
|
||
|
"vuetify"
|
||
|
],
|
||
|
configureWebpack: () => {
|
||
|
return {
|
||
|
plugins: [
|
||
|
new webpack.DefinePlugin({
|
||
|
'process.env': {
|
||
|
'APPLICATION_VERSION': JSON.stringify(require('./package.json').version),
|
||
|
}
|
||
|
})
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|