Sha256: 8d45339e1a68858c31c8fac4cc5766371e3859b57432c016d91c4c96ae06e618

Contents?: true

Size: 548 Bytes

Versions: 17

Compression:

Stored size: 548 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.module
      .rule('vue')
      .use('vue-loader')
      .tap((options) => {
        return {
          prettify: false,
        }
      })
    config.externals(['vue', 'vuetify', 'vuex', 'vue-router'])
  },
}

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
openc3-5.20.0 templates/widget/vue.config.js
openc3-5.19.0 templates/widget/vue.config.js
openc3-5.18.0 templates/widget/vue.config.js
openc3-5.17.1 templates/widget/vue.config.js
openc3-5.17.0 templates/widget/vue.config.js
openc3-5.16.0 templates/widget/vue.config.js
openc3-5.15.2 templates/widget/vue.config.js
openc3-5.15.1 templates/widget/vue.config.js
openc3-5.15.0 templates/widget/vue.config.js
openc3-5.14.2 templates/widget/vue.config.js
openc3-5.14.1 templates/widget/vue.config.js
openc3-5.14.0 templates/widget/vue.config.js
openc3-5.13.0 templates/widget/vue.config.js
openc3-5.12.0 templates/widget/vue.config.js
openc3-5.11.3 templates/widget/vue.config.js
openc3-5.11.2 templates/widget/vue.config.js
openc3-5.11.1 templates/widget/vue.config.js