Sha256: 377720a18ab793bd7fccd523015945067a8e9398a5d1bfe761546a05365e472c

Contents?: true

Size: 428 Bytes

Versions: 11

Compression:

Stored size: 428 Bytes

Contents

const path = require('path')

module.exports = {
  css: {
    extract: false,
  },
  filenameHashing: false,
  transpileDependencies: ['vuetify'],
  chainWebpack(config) {
    config.module
      .rule('js')
      .use('babel-loader')
      .tap((options) => {
        return {
          rootMode: 'upward',
        }
      })
    config.externals([
      'vue',
      'vuetify',
      'vuex',
      'vue-router',
    ])
  },
}

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
openc3-5.11.0 templates/widget/vue.config.js
openc3-5.10.1 templates/widget/vue.config.js
openc3-5.10.0 templates/widget/vue.config.js
openc3-5.9.1 templates/widget/vue.config.js
openc3-5.9.0 templates/widget/vue.config.js
openc3-5.8.1 templates/widget/vue.config.js
openc3-5.8.0 templates/widget/vue.config.js
openc3-5.7.2 templates/widget/vue.config.js
openc3-5.7.0 templates/widget/vue.config.js
openc3-5.6.1 templates/widget/vue.config.js
openc3-5.6.0 templates/widget/vue.config.js