How to fix “webpack Dev Server Invalid Options” in VuejsHow to add external accessible folder(s) to webpack dev serverVuejs 2 Server side rendering - not workinghow to solve this error in react jswebpack with Babel not workingWebpack “start”: “webpack-dev-server --config=config/webpack.dev.js”, not workingcan't run build when productionGzip is true (VueJS)Error at recompile (webpack-dev-server): awesome typescript loader with webpackERROR in multi (webpack)-dev-server/client?http://localhost:8080 ./src when use webpack 4.8.0 in ubuntu 18.04webpack-dev-server Error: EPERM: operation not permitted, stat 'D:System Volume Information'How to fix “This relative module was not found: * ./src/main.js in multi…” error when trying to npm run serve

Is there a context where the expression `a.b::c` makes sense?

How can I make an argument that my time is valuable?

Is it legal to have an abortion in another state or abroad?

Dad jokes are fun

Public transport tickets in UK for two weeks

Natural Armour and Weapons

Gravitational Force Between Numbers

How can I tell if I'm being too picky as a referee?

On San Andreas Speedruns, why do players blow up the Picador in the mission Ryder?

Time complexity of an algorithm: Is it important to state the base of the logarithm?

If a (distance) metric on a connected Riemannian manifold locally agrees with the Riemannian metric, is it equal to the induced metric?

Parallel fifths in the orchestra

Take elements from a list based on two criteria

Making a electromagnet

Is it legal to meet with potential future employers in the UK, whilst visiting from the USA

Did this character show any indication of wanting to rule before S8E6?

Is there any relationship between frequency of signal and distance it travels?

Python program to take in two strings and print the larger string

Where is Jon going?

Is superuser the same as root?

Drums and punctuation

The art of clickbait captions

Is my plasma cannon concept viable?

How do I get the ς (final sigma) symbol?



How to fix “webpack Dev Server Invalid Options” in Vuejs


How to add external accessible folder(s) to webpack dev serverVuejs 2 Server side rendering - not workinghow to solve this error in react jswebpack with Babel not workingWebpack “start”: “webpack-dev-server --config=config/webpack.dev.js”, not workingcan't run build when productionGzip is true (VueJS)Error at recompile (webpack-dev-server): awesome typescript loader with webpackERROR in multi (webpack)-dev-server/client?http://localhost:8080 ./src when use webpack 4.8.0 in ubuntu 18.04webpack-dev-server Error: EPERM: operation not permitted, stat 'D:System Volume Information'How to fix “This relative module was not found: * ./src/main.js in multi…” error when trying to npm run serve






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








18















I am using @vue/cli v3.7.0 and I created a project by vue create myapp with Babel + Router + node-sass and my project got installed successfully



But when I ran npm run serve (in the project directory) I got following error:




INFO Starting development server...
ERROR ValidationError: webpack Dev Server Invalid Options

options.clientLogLevel should be String and equal to one of the allowed values

[ 'info', 'warn', 'error', 'debug', 'trace', 'silent' ]

(https://webpack.js.org/configuration/dev-server/#devserverclientloglevel)

ValidationError: webpack Dev Server Invalid Options

options.clientLogLevel should be String and equal to one of the allowed values

[ 'info', 'warn', 'error', 'debug', 'trace', 'silent' ]

(https://webpack.js.org/configuration/dev-server/#devserverclientloglevel)

at validateOptions (C:UsersDellDesktopmyappnode_moduleswebpack-dev-servernode_modulesschema-utilssrcvalidateOptions.js:32:11)
at new Server (C:UsersDellDesktopmyappnode_moduleswebpack-dev-serverlibServer.js:71:5)
at serve (C:UsersDellDesktopmyappnode_modules@vuecli-servicelibcommandsserve.js:138:20)
at process._tickCallback (internal/process/next_tick.js:68:7)
at Function.Module.runMain (internal/modules/cjs/loader.js:757:11)
at startup (internal/bootstrap/node.js:283:19)
at bootstrapNodeJSCore (internal/bootstrap/node.js:622:3)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! myapp@0.1.0 serve: `vue-cli-service serve`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the myapp@0.1.0 serve script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR! C:UsersDellAppDataRoamingnpm-cache_logs2019-05-17T19_40_14_984Z-debug.log


I tried npm cache clean -f, reinstallation of VueJS, recreation of project but nothing worked :(



I expect my npm run serve work!










share|improve this question







New contributor



Arti Singh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.



















  • This error seem pretty clear, your options.clientLogLevel value seems wrong

    – Jérôme
    May 17 at 15:30






  • 4





    How can I fix this error? How can I change that value in webpack configuration as in my project I don't have any webpack.config.js. Webpack stuff is managed by VueJS for me.

    – Arti Singh
    May 17 at 15:31


















18















I am using @vue/cli v3.7.0 and I created a project by vue create myapp with Babel + Router + node-sass and my project got installed successfully



But when I ran npm run serve (in the project directory) I got following error:




INFO Starting development server...
ERROR ValidationError: webpack Dev Server Invalid Options

options.clientLogLevel should be String and equal to one of the allowed values

[ 'info', 'warn', 'error', 'debug', 'trace', 'silent' ]

(https://webpack.js.org/configuration/dev-server/#devserverclientloglevel)

ValidationError: webpack Dev Server Invalid Options

options.clientLogLevel should be String and equal to one of the allowed values

[ 'info', 'warn', 'error', 'debug', 'trace', 'silent' ]

(https://webpack.js.org/configuration/dev-server/#devserverclientloglevel)

at validateOptions (C:UsersDellDesktopmyappnode_moduleswebpack-dev-servernode_modulesschema-utilssrcvalidateOptions.js:32:11)
at new Server (C:UsersDellDesktopmyappnode_moduleswebpack-dev-serverlibServer.js:71:5)
at serve (C:UsersDellDesktopmyappnode_modules@vuecli-servicelibcommandsserve.js:138:20)
at process._tickCallback (internal/process/next_tick.js:68:7)
at Function.Module.runMain (internal/modules/cjs/loader.js:757:11)
at startup (internal/bootstrap/node.js:283:19)
at bootstrapNodeJSCore (internal/bootstrap/node.js:622:3)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! myapp@0.1.0 serve: `vue-cli-service serve`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the myapp@0.1.0 serve script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR! C:UsersDellAppDataRoamingnpm-cache_logs2019-05-17T19_40_14_984Z-debug.log


I tried npm cache clean -f, reinstallation of VueJS, recreation of project but nothing worked :(



I expect my npm run serve work!










share|improve this question







New contributor



Arti Singh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.



















  • This error seem pretty clear, your options.clientLogLevel value seems wrong

    – Jérôme
    May 17 at 15:30






  • 4





    How can I fix this error? How can I change that value in webpack configuration as in my project I don't have any webpack.config.js. Webpack stuff is managed by VueJS for me.

    – Arti Singh
    May 17 at 15:31














18












18








18


1






I am using @vue/cli v3.7.0 and I created a project by vue create myapp with Babel + Router + node-sass and my project got installed successfully



But when I ran npm run serve (in the project directory) I got following error:




INFO Starting development server...
ERROR ValidationError: webpack Dev Server Invalid Options

options.clientLogLevel should be String and equal to one of the allowed values

[ 'info', 'warn', 'error', 'debug', 'trace', 'silent' ]

(https://webpack.js.org/configuration/dev-server/#devserverclientloglevel)

ValidationError: webpack Dev Server Invalid Options

options.clientLogLevel should be String and equal to one of the allowed values

[ 'info', 'warn', 'error', 'debug', 'trace', 'silent' ]

(https://webpack.js.org/configuration/dev-server/#devserverclientloglevel)

at validateOptions (C:UsersDellDesktopmyappnode_moduleswebpack-dev-servernode_modulesschema-utilssrcvalidateOptions.js:32:11)
at new Server (C:UsersDellDesktopmyappnode_moduleswebpack-dev-serverlibServer.js:71:5)
at serve (C:UsersDellDesktopmyappnode_modules@vuecli-servicelibcommandsserve.js:138:20)
at process._tickCallback (internal/process/next_tick.js:68:7)
at Function.Module.runMain (internal/modules/cjs/loader.js:757:11)
at startup (internal/bootstrap/node.js:283:19)
at bootstrapNodeJSCore (internal/bootstrap/node.js:622:3)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! myapp@0.1.0 serve: `vue-cli-service serve`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the myapp@0.1.0 serve script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR! C:UsersDellAppDataRoamingnpm-cache_logs2019-05-17T19_40_14_984Z-debug.log


I tried npm cache clean -f, reinstallation of VueJS, recreation of project but nothing worked :(



I expect my npm run serve work!










share|improve this question







New contributor



Arti Singh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











I am using @vue/cli v3.7.0 and I created a project by vue create myapp with Babel + Router + node-sass and my project got installed successfully



But when I ran npm run serve (in the project directory) I got following error:




INFO Starting development server...
ERROR ValidationError: webpack Dev Server Invalid Options

options.clientLogLevel should be String and equal to one of the allowed values

[ 'info', 'warn', 'error', 'debug', 'trace', 'silent' ]

(https://webpack.js.org/configuration/dev-server/#devserverclientloglevel)

ValidationError: webpack Dev Server Invalid Options

options.clientLogLevel should be String and equal to one of the allowed values

[ 'info', 'warn', 'error', 'debug', 'trace', 'silent' ]

(https://webpack.js.org/configuration/dev-server/#devserverclientloglevel)

at validateOptions (C:UsersDellDesktopmyappnode_moduleswebpack-dev-servernode_modulesschema-utilssrcvalidateOptions.js:32:11)
at new Server (C:UsersDellDesktopmyappnode_moduleswebpack-dev-serverlibServer.js:71:5)
at serve (C:UsersDellDesktopmyappnode_modules@vuecli-servicelibcommandsserve.js:138:20)
at process._tickCallback (internal/process/next_tick.js:68:7)
at Function.Module.runMain (internal/modules/cjs/loader.js:757:11)
at startup (internal/bootstrap/node.js:283:19)
at bootstrapNodeJSCore (internal/bootstrap/node.js:622:3)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! myapp@0.1.0 serve: `vue-cli-service serve`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the myapp@0.1.0 serve script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR! C:UsersDellAppDataRoamingnpm-cache_logs2019-05-17T19_40_14_984Z-debug.log


I tried npm cache clean -f, reinstallation of VueJS, recreation of project but nothing worked :(



I expect my npm run serve work!







vuejs2 webpack-dev-server






share|improve this question







New contributor



Arti Singh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.










share|improve this question







New contributor



Arti Singh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








share|improve this question




share|improve this question






New contributor



Arti Singh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








asked May 17 at 15:25









Arti SinghArti Singh

936




936




New contributor



Arti Singh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




New contributor




Arti Singh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.














  • This error seem pretty clear, your options.clientLogLevel value seems wrong

    – Jérôme
    May 17 at 15:30






  • 4





    How can I fix this error? How can I change that value in webpack configuration as in my project I don't have any webpack.config.js. Webpack stuff is managed by VueJS for me.

    – Arti Singh
    May 17 at 15:31


















  • This error seem pretty clear, your options.clientLogLevel value seems wrong

    – Jérôme
    May 17 at 15:30






  • 4





    How can I fix this error? How can I change that value in webpack configuration as in my project I don't have any webpack.config.js. Webpack stuff is managed by VueJS for me.

    – Arti Singh
    May 17 at 15:31

















This error seem pretty clear, your options.clientLogLevel value seems wrong

– Jérôme
May 17 at 15:30





This error seem pretty clear, your options.clientLogLevel value seems wrong

– Jérôme
May 17 at 15:30




4




4





How can I fix this error? How can I change that value in webpack configuration as in my project I don't have any webpack.config.js. Webpack stuff is managed by VueJS for me.

– Arti Singh
May 17 at 15:31






How can I fix this error? How can I change that value in webpack configuration as in my project I don't have any webpack.config.js. Webpack stuff is managed by VueJS for me.

– Arti Singh
May 17 at 15:31













6 Answers
6






active

oldest

votes


















12














yea this issue just popped up in the last few hours in @vue/cli. I had the same thing in a fresh project. To fix it try this:



  1. Create a file in the root of your project called vue.config.js if you don't already have that file.


  2. Add this to that file:


module.exports = 
devServer:
clientLogLevel: 'info'

;



Then re-run your project. Something happened last night where the clientLogLevel value that comes preset became incorrect.



Here's a thread talking about this issue: GitHub.






share|improve this answer

























  • Ok great - my bad. I'll edit my post so no one else who see's it gets mixed up.

    – adstwlearn
    May 17 at 15:50











  • Got the same error today when I upgrade Vue CLI service in an existing project and after creating a hello word example. This change does idd make the webpack config valid again. Seems like a mistake in the default config.

    – Christophe Geers
    May 17 at 16:59



















5














I have no idea why you're getting that error but here is how you'd configure that option:



1.
Create vue.config.js in your root directory



2.
Enter the following into it:



module.exports = 
devServer:
clientLogLevel: 'debug'




3.
Rerun npm run serve



You can read more about configuring the dev server here.






share|improve this answer






























    0














    Seems like webpack-dev-server@3.4.0 broke something. I reverted it to 3.3.1 and it seems to be working.






    share|improve this answer








    New contributor



    Philip Caleja is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.


























      0














      The docs are a little confusing when using @vue/cli-service, since it essentially wraps webpack.



      [Here is a link to the solution](
      https://cli.vuejs.org/guide/webpack.html#simple-configuration)



      Best thing to do is update your vue.config.js with something like



      configureWebpack: 
      devServer:
      clientLogLevel: `silent`,
      ,
      ,





      share|improve this answer










      New contributor



      urban_coder is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.


























        0














        I edited




        node_modules/@vue/cli-service/lib/commands/serve.js




        so that line 139 says:




        clientLogLevel: 'warn'




        instead of




        clientLogLevel: 'none'




        (Edit - though I'm working with the hello-world app)






        share|improve this answer






























          0














          webpack-dev-server has been released as v3.4.1 for hotfix.
          Please update.
          https://github.com/webpack/webpack-dev-server/releases/tag/v3.4.1






          share|improve this answer








          New contributor



          Yuta Hiroto is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.



















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );






            Arti Singh is a new contributor. Be nice, and check out our Code of Conduct.









            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f56189459%2fhow-to-fix-webpack-dev-server-invalid-options-in-vuejs%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            6 Answers
            6






            active

            oldest

            votes








            6 Answers
            6






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            12














            yea this issue just popped up in the last few hours in @vue/cli. I had the same thing in a fresh project. To fix it try this:



            1. Create a file in the root of your project called vue.config.js if you don't already have that file.


            2. Add this to that file:


            module.exports = 
            devServer:
            clientLogLevel: 'info'

            ;



            Then re-run your project. Something happened last night where the clientLogLevel value that comes preset became incorrect.



            Here's a thread talking about this issue: GitHub.






            share|improve this answer

























            • Ok great - my bad. I'll edit my post so no one else who see's it gets mixed up.

              – adstwlearn
              May 17 at 15:50











            • Got the same error today when I upgrade Vue CLI service in an existing project and after creating a hello word example. This change does idd make the webpack config valid again. Seems like a mistake in the default config.

              – Christophe Geers
              May 17 at 16:59
















            12














            yea this issue just popped up in the last few hours in @vue/cli. I had the same thing in a fresh project. To fix it try this:



            1. Create a file in the root of your project called vue.config.js if you don't already have that file.


            2. Add this to that file:


            module.exports = 
            devServer:
            clientLogLevel: 'info'

            ;



            Then re-run your project. Something happened last night where the clientLogLevel value that comes preset became incorrect.



            Here's a thread talking about this issue: GitHub.






            share|improve this answer

























            • Ok great - my bad. I'll edit my post so no one else who see's it gets mixed up.

              – adstwlearn
              May 17 at 15:50











            • Got the same error today when I upgrade Vue CLI service in an existing project and after creating a hello word example. This change does idd make the webpack config valid again. Seems like a mistake in the default config.

              – Christophe Geers
              May 17 at 16:59














            12












            12








            12







            yea this issue just popped up in the last few hours in @vue/cli. I had the same thing in a fresh project. To fix it try this:



            1. Create a file in the root of your project called vue.config.js if you don't already have that file.


            2. Add this to that file:


            module.exports = 
            devServer:
            clientLogLevel: 'info'

            ;



            Then re-run your project. Something happened last night where the clientLogLevel value that comes preset became incorrect.



            Here's a thread talking about this issue: GitHub.






            share|improve this answer















            yea this issue just popped up in the last few hours in @vue/cli. I had the same thing in a fresh project. To fix it try this:



            1. Create a file in the root of your project called vue.config.js if you don't already have that file.


            2. Add this to that file:


            module.exports = 
            devServer:
            clientLogLevel: 'info'

            ;



            Then re-run your project. Something happened last night where the clientLogLevel value that comes preset became incorrect.



            Here's a thread talking about this issue: GitHub.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited May 17 at 15:51

























            answered May 17 at 15:39









            adstwlearnadstwlearn

            18616




            18616












            • Ok great - my bad. I'll edit my post so no one else who see's it gets mixed up.

              – adstwlearn
              May 17 at 15:50











            • Got the same error today when I upgrade Vue CLI service in an existing project and after creating a hello word example. This change does idd make the webpack config valid again. Seems like a mistake in the default config.

              – Christophe Geers
              May 17 at 16:59


















            • Ok great - my bad. I'll edit my post so no one else who see's it gets mixed up.

              – adstwlearn
              May 17 at 15:50











            • Got the same error today when I upgrade Vue CLI service in an existing project and after creating a hello word example. This change does idd make the webpack config valid again. Seems like a mistake in the default config.

              – Christophe Geers
              May 17 at 16:59

















            Ok great - my bad. I'll edit my post so no one else who see's it gets mixed up.

            – adstwlearn
            May 17 at 15:50





            Ok great - my bad. I'll edit my post so no one else who see's it gets mixed up.

            – adstwlearn
            May 17 at 15:50













            Got the same error today when I upgrade Vue CLI service in an existing project and after creating a hello word example. This change does idd make the webpack config valid again. Seems like a mistake in the default config.

            – Christophe Geers
            May 17 at 16:59






            Got the same error today when I upgrade Vue CLI service in an existing project and after creating a hello word example. This change does idd make the webpack config valid again. Seems like a mistake in the default config.

            – Christophe Geers
            May 17 at 16:59














            5














            I have no idea why you're getting that error but here is how you'd configure that option:



            1.
            Create vue.config.js in your root directory



            2.
            Enter the following into it:



            module.exports = 
            devServer:
            clientLogLevel: 'debug'




            3.
            Rerun npm run serve



            You can read more about configuring the dev server here.






            share|improve this answer



























              5














              I have no idea why you're getting that error but here is how you'd configure that option:



              1.
              Create vue.config.js in your root directory



              2.
              Enter the following into it:



              module.exports = 
              devServer:
              clientLogLevel: 'debug'




              3.
              Rerun npm run serve



              You can read more about configuring the dev server here.






              share|improve this answer

























                5












                5








                5







                I have no idea why you're getting that error but here is how you'd configure that option:



                1.
                Create vue.config.js in your root directory



                2.
                Enter the following into it:



                module.exports = 
                devServer:
                clientLogLevel: 'debug'




                3.
                Rerun npm run serve



                You can read more about configuring the dev server here.






                share|improve this answer













                I have no idea why you're getting that error but here is how you'd configure that option:



                1.
                Create vue.config.js in your root directory



                2.
                Enter the following into it:



                module.exports = 
                devServer:
                clientLogLevel: 'debug'




                3.
                Rerun npm run serve



                You can read more about configuring the dev server here.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered May 17 at 15:37









                DanDan

                20.8k74355




                20.8k74355





















                    0














                    Seems like webpack-dev-server@3.4.0 broke something. I reverted it to 3.3.1 and it seems to be working.






                    share|improve this answer








                    New contributor



                    Philip Caleja is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.























                      0














                      Seems like webpack-dev-server@3.4.0 broke something. I reverted it to 3.3.1 and it seems to be working.






                      share|improve this answer








                      New contributor



                      Philip Caleja is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.





















                        0












                        0








                        0







                        Seems like webpack-dev-server@3.4.0 broke something. I reverted it to 3.3.1 and it seems to be working.






                        share|improve this answer








                        New contributor



                        Philip Caleja is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.









                        Seems like webpack-dev-server@3.4.0 broke something. I reverted it to 3.3.1 and it seems to be working.







                        share|improve this answer








                        New contributor



                        Philip Caleja is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.








                        share|improve this answer



                        share|improve this answer






                        New contributor



                        Philip Caleja is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.








                        answered May 17 at 15:46









                        Philip CalejaPhilip Caleja

                        11




                        11




                        New contributor



                        Philip Caleja is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.




                        New contributor




                        Philip Caleja is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.























                            0














                            The docs are a little confusing when using @vue/cli-service, since it essentially wraps webpack.



                            [Here is a link to the solution](
                            https://cli.vuejs.org/guide/webpack.html#simple-configuration)



                            Best thing to do is update your vue.config.js with something like



                            configureWebpack: 
                            devServer:
                            clientLogLevel: `silent`,
                            ,
                            ,





                            share|improve this answer










                            New contributor



                            urban_coder is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.























                              0














                              The docs are a little confusing when using @vue/cli-service, since it essentially wraps webpack.



                              [Here is a link to the solution](
                              https://cli.vuejs.org/guide/webpack.html#simple-configuration)



                              Best thing to do is update your vue.config.js with something like



                              configureWebpack: 
                              devServer:
                              clientLogLevel: `silent`,
                              ,
                              ,





                              share|improve this answer










                              New contributor



                              urban_coder is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                              Check out our Code of Conduct.





















                                0












                                0








                                0







                                The docs are a little confusing when using @vue/cli-service, since it essentially wraps webpack.



                                [Here is a link to the solution](
                                https://cli.vuejs.org/guide/webpack.html#simple-configuration)



                                Best thing to do is update your vue.config.js with something like



                                configureWebpack: 
                                devServer:
                                clientLogLevel: `silent`,
                                ,
                                ,





                                share|improve this answer










                                New contributor



                                urban_coder is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                Check out our Code of Conduct.









                                The docs are a little confusing when using @vue/cli-service, since it essentially wraps webpack.



                                [Here is a link to the solution](
                                https://cli.vuejs.org/guide/webpack.html#simple-configuration)



                                Best thing to do is update your vue.config.js with something like



                                configureWebpack: 
                                devServer:
                                clientLogLevel: `silent`,
                                ,
                                ,






                                share|improve this answer










                                New contributor



                                urban_coder is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                Check out our Code of Conduct.








                                share|improve this answer



                                share|improve this answer








                                edited May 17 at 15:50









                                D. Ben Knoble

                                1,04011224




                                1,04011224






                                New contributor



                                urban_coder is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                Check out our Code of Conduct.








                                answered May 17 at 15:39









                                urban_coderurban_coder

                                11




                                11




                                New contributor



                                urban_coder is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                Check out our Code of Conduct.




                                New contributor




                                urban_coder is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                Check out our Code of Conduct.























                                    0














                                    I edited




                                    node_modules/@vue/cli-service/lib/commands/serve.js




                                    so that line 139 says:




                                    clientLogLevel: 'warn'




                                    instead of




                                    clientLogLevel: 'none'




                                    (Edit - though I'm working with the hello-world app)






                                    share|improve this answer



























                                      0














                                      I edited




                                      node_modules/@vue/cli-service/lib/commands/serve.js




                                      so that line 139 says:




                                      clientLogLevel: 'warn'




                                      instead of




                                      clientLogLevel: 'none'




                                      (Edit - though I'm working with the hello-world app)






                                      share|improve this answer

























                                        0












                                        0








                                        0







                                        I edited




                                        node_modules/@vue/cli-service/lib/commands/serve.js




                                        so that line 139 says:




                                        clientLogLevel: 'warn'




                                        instead of




                                        clientLogLevel: 'none'




                                        (Edit - though I'm working with the hello-world app)






                                        share|improve this answer













                                        I edited




                                        node_modules/@vue/cli-service/lib/commands/serve.js




                                        so that line 139 says:




                                        clientLogLevel: 'warn'




                                        instead of




                                        clientLogLevel: 'none'




                                        (Edit - though I'm working with the hello-world app)







                                        share|improve this answer












                                        share|improve this answer



                                        share|improve this answer










                                        answered May 17 at 16:41









                                        MorayJMorayJ

                                        936




                                        936





















                                            0














                                            webpack-dev-server has been released as v3.4.1 for hotfix.
                                            Please update.
                                            https://github.com/webpack/webpack-dev-server/releases/tag/v3.4.1






                                            share|improve this answer








                                            New contributor



                                            Yuta Hiroto is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                            Check out our Code of Conduct.























                                              0














                                              webpack-dev-server has been released as v3.4.1 for hotfix.
                                              Please update.
                                              https://github.com/webpack/webpack-dev-server/releases/tag/v3.4.1






                                              share|improve this answer








                                              New contributor



                                              Yuta Hiroto is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                              Check out our Code of Conduct.





















                                                0












                                                0








                                                0







                                                webpack-dev-server has been released as v3.4.1 for hotfix.
                                                Please update.
                                                https://github.com/webpack/webpack-dev-server/releases/tag/v3.4.1






                                                share|improve this answer








                                                New contributor



                                                Yuta Hiroto is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                Check out our Code of Conduct.









                                                webpack-dev-server has been released as v3.4.1 for hotfix.
                                                Please update.
                                                https://github.com/webpack/webpack-dev-server/releases/tag/v3.4.1







                                                share|improve this answer








                                                New contributor



                                                Yuta Hiroto is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                Check out our Code of Conduct.








                                                share|improve this answer



                                                share|improve this answer






                                                New contributor



                                                Yuta Hiroto is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                Check out our Code of Conduct.








                                                answered May 17 at 17:51









                                                Yuta HirotoYuta Hiroto

                                                1




                                                1




                                                New contributor



                                                Yuta Hiroto is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                Check out our Code of Conduct.




                                                New contributor




                                                Yuta Hiroto is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                Check out our Code of Conduct.






















                                                    Arti Singh is a new contributor. Be nice, and check out our Code of Conduct.









                                                    draft saved

                                                    draft discarded


















                                                    Arti Singh is a new contributor. Be nice, and check out our Code of Conduct.












                                                    Arti Singh is a new contributor. Be nice, and check out our Code of Conduct.











                                                    Arti Singh is a new contributor. Be nice, and check out our Code of Conduct.














                                                    Thanks for contributing an answer to Stack Overflow!


                                                    • Please be sure to answer the question. Provide details and share your research!

                                                    But avoid


                                                    • Asking for help, clarification, or responding to other answers.

                                                    • Making statements based on opinion; back them up with references or personal experience.

                                                    To learn more, see our tips on writing great answers.




                                                    draft saved


                                                    draft discarded














                                                    StackExchange.ready(
                                                    function ()
                                                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f56189459%2fhow-to-fix-webpack-dev-server-invalid-options-in-vuejs%23new-answer', 'question_page');

                                                    );

                                                    Post as a guest















                                                    Required, but never shown





















































                                                    Required, but never shown














                                                    Required, but never shown












                                                    Required, but never shown







                                                    Required, but never shown

































                                                    Required, but never shown














                                                    Required, but never shown












                                                    Required, but never shown







                                                    Required, but never shown







                                                    Popular posts from this blog

                                                    Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

                                                    Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

                                                    Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form