Skip to content
Snippets Groups Projects
Select Git revision
  • v1.3.0
  • master default protected
  • gitkeep
  • dev protected
  • Issue/1870-publicPrivateVisibility
  • Sprint/2022-01
  • Sprint/2021-22
  • Sprint/2021-21
  • Issue/0039-participatingOrganizationsSearch
  • Sprint/2021-19
  • Sprint/2021-16
  • Product/1666-removeRadioButtons
  • Topic/1686-removeRadioButtons
  • Sprint/2021-08
  • Hotfix/1475-projectCreateSpinner
  • Sprint/2021-05
  • Hotfix/1376-projectCreation
  • Sprint/2021-02
  • Product/1107-frontendPerformance
  • Topic/1227-frontendPerformance
  • Product/1215-gitlabCleanUp
  • v1.5.2
  • v1.5.1
  • v1.5.0
  • v1.4.0
  • v1.2.4
  • v1.2.3
  • v1.2.2
  • v1.2.1
  • v1.2.0
  • v1.1.7
  • v1.1.6
  • v1.1.5
  • v1.1.4
  • v1.1.3
  • v1.1.2
  • v1.1.1
  • v1.1.0
  • v1.0.8
  • v1.0.7
40 results

vue.config.js

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    vue.config.js 328 B
    module.exports = {
      devServer: {
        disableHostCheck: true,
      },
      publicPath: "./",
      configureWebpack: {
        devtool: "source-map",
        devServer: {
          port: 9272,
        },
      },
      filenameHashing: false,
      chainWebpack: (config) => {
        config.optimization.delete("splitChunks");
      },
      css: {
        extract: false,
      },
    };