S
S
Sergey But2019-06-20 23:58:32
webpack
Sergey But, 2019-06-20 23:58:32

How to remove loglevel:webpack-dev-server entry from localStorage?

The project is built with Vue-cli and the fucking webpack puts this entry in localStorage. How to remove it from there?5d0bf3708cf7d474119643.png

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Anton Spirin, 2019-06-21
@rockon404

What is it about this post that bothers you? It is made by Webpack DevServer.
If you want a different clientLogLevel value, then you can reassign it in vue.config.js:

module.exports = {
  devServer: {
    clientLogLevel: 'silent', // 'silent' | 'trace' | 'debug' | 'info' | 'warn' | 'error' | 'none' | 'warning'
  },
};

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question