mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-22 15:56:15 -04:00
18 lines
No EOL
352 B
JavaScript
18 lines
No EOL
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),
|
|
}
|
|
})
|
|
]
|
|
}
|
|
}
|
|
} |