Answer the question
In order to leave comments, you need to log in
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?
Answer the question
In order to leave comments, you need to log in
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 questionAsk a Question
731 491 924 answers to any question