Skip to content

Can't disable hashing from build #1649

@ram33

Description

@ram33

Version

3.0.0-rc.3

Steps to reproduce

Have tried below two options as suggested in docs... but doesn't seem to work

//vue.config.js

module.exports = {
  chainWebpack: config => {
    config
      .plugin('html')
      .tap(args => {
        args[0].hash = false;
        return args
      })
  }
}

module.exports = {
  chainWebpack: config => {
    config
      .plugin('html')
      .tap(args => [{
        hash: false
      }])
  }
}

What is expected?

Was expecting output file name to be just app.css instead of app.########.css

What is actually happening?

I am getting app.########.css

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions