it-tools/vue.config.js
Corentin Thomasset fba0701df2 feat: contributors + changelogs in about page
Signed-off-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2020-06-08 00:31:07 +02:00

23 lines
No EOL
450 B
JavaScript

const webpack = require('webpack');
module.exports = {
"transpileDependencies": [
"vuetify"
],
configureWebpack: () => {
return {
module:{
rules: [
{ test: /\.md$/, use: 'raw-loader' }
]
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
'APPLICATION_VERSION': JSON.stringify(require('./package.json').version),
}
})
]
}
}
}