3

I have deployed AbpBoilerplate ASP.NET CORE with the jQuery option.

Deployed successfully but the system is not able to find the min js files and jquery is also not able to find in shared-layout page.

enter image description here

Is there any bundle config I need to set?

Please let me the flow as abp is not giving any deployment steps.

Note: I am using myasp.net as hosting service.

Mahavirsinh Padhiyar
  • 1,299
  • 11
  • 33

1 Answers1

0

You need to restore the client-side libraries before you run the application.

From https://aspnetboilerplate.com/Pages/Documents/Zero/Startup-Template-Core:

  • Since it uses libman, go to Web.Mvc project. Right click to libman.json file. Then click to Restore Client-Side Libraries.

    (If you are not using Visual Studio and/or you are on a mac you can use Libman CLI . After installing it while in Web.Mvc folder run libman restore)

aaron
  • 39,695
  • 6
  • 46
  • 102