Invalid additional property errors on Startup.cs in Angular4 + .Net Core Application — [on hold]









up vote
0
down vote

favorite












can someone please tell me one thing -- I am getting the following errors on Startup.cs



options.manifest.content['./node_modules/rxjs/Observable.js']['meta'] is an invalid additional property
options.manifest.content['./node_modules/jquery/dist/jquery.js']['meta'] is an invalid additional property
options.manifest.content['./node_modules/rxjs/Subscriber.js']['meta'] is an invalid additional property
options.manifest.content['./node_modules/@angular/core/@angular/core.es5.js']['meta'] is an invalid additional property
options.manifest.content['./node_modules/tslib/tslib.es6.js']['meta'] is an invalid additional property
options.manifest.content['./node_modules/rxjs/util/root.js']['meta'] is an invalid additional property
options.manifest.content['./node_modules/@angular/platform-browser/@angular/platform-browser.es5.js']['meta'] is an invalid additional property ....... etcetcetc


my application is a .Net Core and Angular project and I am getting the above error on the following part --



app.UseWebpackDevMiddleware(new WebpackDevMiddlewareOptions

HotModuleReplacement = true,
HotModuleReplacementEndpoint = "/dist/__webpack_hmr"
);


This is the part from my webpack.config. As you can see, the output path is there.



output: 
filename: '[name].js',
publicPath: 'dist/' // Webpack dev middleware, if enabled, handles requests for this URL prefix
,
module: {
rules: [


what does it basically mean?? What is supposed to be done? What package should I update/add/remove to my project?



Thanks in anticipation; I searched around in vain for any suitable fix.










share|improve this question













put on hold as off-topic by R. Richards, Kirk Larkin, Matthew L Daniel, Tân Nguyễn, Nan Yu Nov 13 at 2:25


This question appears to be off-topic. The users who voted to close gave this specific reason:


  • "Questions seeking debugging help ("why isn't this code working?") must include the desired behavior, a specific problem or error and the shortest code necessary to reproduce it in the question itself. Questions without a clear problem statement are not useful to other readers. See: How to create a Minimal, Complete, and Verifiable example." – R. Richards, Kirk Larkin, Matthew L Daniel, Tân Nguyễn, Nan Yu
If this question can be reworded to fit the rules in the help center, please edit the question.
















    up vote
    0
    down vote

    favorite












    can someone please tell me one thing -- I am getting the following errors on Startup.cs



    options.manifest.content['./node_modules/rxjs/Observable.js']['meta'] is an invalid additional property
    options.manifest.content['./node_modules/jquery/dist/jquery.js']['meta'] is an invalid additional property
    options.manifest.content['./node_modules/rxjs/Subscriber.js']['meta'] is an invalid additional property
    options.manifest.content['./node_modules/@angular/core/@angular/core.es5.js']['meta'] is an invalid additional property
    options.manifest.content['./node_modules/tslib/tslib.es6.js']['meta'] is an invalid additional property
    options.manifest.content['./node_modules/rxjs/util/root.js']['meta'] is an invalid additional property
    options.manifest.content['./node_modules/@angular/platform-browser/@angular/platform-browser.es5.js']['meta'] is an invalid additional property ....... etcetcetc


    my application is a .Net Core and Angular project and I am getting the above error on the following part --



    app.UseWebpackDevMiddleware(new WebpackDevMiddlewareOptions

    HotModuleReplacement = true,
    HotModuleReplacementEndpoint = "/dist/__webpack_hmr"
    );


    This is the part from my webpack.config. As you can see, the output path is there.



    output: 
    filename: '[name].js',
    publicPath: 'dist/' // Webpack dev middleware, if enabled, handles requests for this URL prefix
    ,
    module: {
    rules: [


    what does it basically mean?? What is supposed to be done? What package should I update/add/remove to my project?



    Thanks in anticipation; I searched around in vain for any suitable fix.










    share|improve this question













    put on hold as off-topic by R. Richards, Kirk Larkin, Matthew L Daniel, Tân Nguyễn, Nan Yu Nov 13 at 2:25


    This question appears to be off-topic. The users who voted to close gave this specific reason:


    • "Questions seeking debugging help ("why isn't this code working?") must include the desired behavior, a specific problem or error and the shortest code necessary to reproduce it in the question itself. Questions without a clear problem statement are not useful to other readers. See: How to create a Minimal, Complete, and Verifiable example." – R. Richards, Kirk Larkin, Matthew L Daniel, Tân Nguyễn, Nan Yu
    If this question can be reworded to fit the rules in the help center, please edit the question.














      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      can someone please tell me one thing -- I am getting the following errors on Startup.cs



      options.manifest.content['./node_modules/rxjs/Observable.js']['meta'] is an invalid additional property
      options.manifest.content['./node_modules/jquery/dist/jquery.js']['meta'] is an invalid additional property
      options.manifest.content['./node_modules/rxjs/Subscriber.js']['meta'] is an invalid additional property
      options.manifest.content['./node_modules/@angular/core/@angular/core.es5.js']['meta'] is an invalid additional property
      options.manifest.content['./node_modules/tslib/tslib.es6.js']['meta'] is an invalid additional property
      options.manifest.content['./node_modules/rxjs/util/root.js']['meta'] is an invalid additional property
      options.manifest.content['./node_modules/@angular/platform-browser/@angular/platform-browser.es5.js']['meta'] is an invalid additional property ....... etcetcetc


      my application is a .Net Core and Angular project and I am getting the above error on the following part --



      app.UseWebpackDevMiddleware(new WebpackDevMiddlewareOptions

      HotModuleReplacement = true,
      HotModuleReplacementEndpoint = "/dist/__webpack_hmr"
      );


      This is the part from my webpack.config. As you can see, the output path is there.



      output: 
      filename: '[name].js',
      publicPath: 'dist/' // Webpack dev middleware, if enabled, handles requests for this URL prefix
      ,
      module: {
      rules: [


      what does it basically mean?? What is supposed to be done? What package should I update/add/remove to my project?



      Thanks in anticipation; I searched around in vain for any suitable fix.










      share|improve this question













      can someone please tell me one thing -- I am getting the following errors on Startup.cs



      options.manifest.content['./node_modules/rxjs/Observable.js']['meta'] is an invalid additional property
      options.manifest.content['./node_modules/jquery/dist/jquery.js']['meta'] is an invalid additional property
      options.manifest.content['./node_modules/rxjs/Subscriber.js']['meta'] is an invalid additional property
      options.manifest.content['./node_modules/@angular/core/@angular/core.es5.js']['meta'] is an invalid additional property
      options.manifest.content['./node_modules/tslib/tslib.es6.js']['meta'] is an invalid additional property
      options.manifest.content['./node_modules/rxjs/util/root.js']['meta'] is an invalid additional property
      options.manifest.content['./node_modules/@angular/platform-browser/@angular/platform-browser.es5.js']['meta'] is an invalid additional property ....... etcetcetc


      my application is a .Net Core and Angular project and I am getting the above error on the following part --



      app.UseWebpackDevMiddleware(new WebpackDevMiddlewareOptions

      HotModuleReplacement = true,
      HotModuleReplacementEndpoint = "/dist/__webpack_hmr"
      );


      This is the part from my webpack.config. As you can see, the output path is there.



      output: 
      filename: '[name].js',
      publicPath: 'dist/' // Webpack dev middleware, if enabled, handles requests for this URL prefix
      ,
      module: {
      rules: [


      what does it basically mean?? What is supposed to be done? What package should I update/add/remove to my project?



      Thanks in anticipation; I searched around in vain for any suitable fix.







      angular asp.net-core webpack .net-core app-startup






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 10 at 14:04









      Prabir Choudhury

      278




      278




      put on hold as off-topic by R. Richards, Kirk Larkin, Matthew L Daniel, Tân Nguyễn, Nan Yu Nov 13 at 2:25


      This question appears to be off-topic. The users who voted to close gave this specific reason:


      • "Questions seeking debugging help ("why isn't this code working?") must include the desired behavior, a specific problem or error and the shortest code necessary to reproduce it in the question itself. Questions without a clear problem statement are not useful to other readers. See: How to create a Minimal, Complete, and Verifiable example." – R. Richards, Kirk Larkin, Matthew L Daniel, Tân Nguyễn, Nan Yu
      If this question can be reworded to fit the rules in the help center, please edit the question.




      put on hold as off-topic by R. Richards, Kirk Larkin, Matthew L Daniel, Tân Nguyễn, Nan Yu Nov 13 at 2:25


      This question appears to be off-topic. The users who voted to close gave this specific reason:


      • "Questions seeking debugging help ("why isn't this code working?") must include the desired behavior, a specific problem or error and the shortest code necessary to reproduce it in the question itself. Questions without a clear problem statement are not useful to other readers. See: How to create a Minimal, Complete, and Verifiable example." – R. Richards, Kirk Larkin, Matthew L Daniel, Tân Nguyễn, Nan Yu
      If this question can be reworded to fit the rules in the help center, please edit the question.



























          active

          oldest

          votes






















          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes

          這個網誌中的熱門文章

          Barbados

          How to read a connectionString WITH PROVIDER in .NET Core?

          Node.js Script on GitHub Pages or Amazon S3