summaryrefslogtreecommitdiff
path: root/vue.config.js
blob: 8f6b840412e70996dc99f62b6dfa84f822e698ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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),
          }
        })
      ]
    }
  }
}