Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • gitkeep
  • dev protected
  • Issue/2072-wormResourceType
  • Sprint/2022-05
  • Issue/2001-extendAnalyticsLogger
  • Issue/1799-APCreationOptionOnResourceCreation
  • Issue/1913-ModificationsResourceMetadata
  • Issue/1870-publicPrivateVisibility
  • Sprint/2022-01
  • Issue/1804-fixedValueFix
  • Sprint/2021-22
  • Issue/43-saveButton
  • Issue/1762-renamingResourceTypes
  • Hotfix/64-releaseUDE
  • Sprint/2021-16
  • Product/1666-removeRadioButtons
  • Topic/1686-removeRadioButtons
  • Sprint/2021-14
  • Sprint/2021-12
  • v1.23.1
  • v1.23.0
  • v1.22.0
  • v1.21.0
  • v1.20.0
  • v1.19.0
  • v1.18.1
  • v1.18.0
  • v1.17.6
  • v1.17.5
  • v1.17.4
  • v1.17.3
  • v1.17.2
  • v1.17.1
  • v1.17.0
  • v1.16.1
  • v1.16.0
  • v1.15.1
  • v1.15.0
  • v1.14.1
40 results

vue.config.js

Blame
  • Hanna Führ's avatar
    Hanna Führ authored and Petar Hristov committed
    a4fefe0b
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    vue.config.js 353 B
    module.exports = {
      devServer: {
        disableHostCheck: true,
      },
      publicPath: "./",
      configureWebpack: {
        devtool: "source-map",
        devServer: {
          port: 7936,
        },
      },
      filenameHashing: false,
      chainWebpack: (config) => {
        config.optimization.delete("splitChunks");
      },
      css: {
        extract: false,
      },
      runtimeCompiler: true,
    };