Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I remove Bower from a ASP.NET Core Web application?

Problem

I created an ASP.NET Core Web App on Ubuntu and it runs fine.

project list

However, it seems to have included bower by default. I want my web project to handle serving the site, but to have any of the Javascript/SASS/CSS etc generation to be handled in isolation by Webpack in conjunction with a few other things.

bundle configenter image description here

Question

How do I cleanly remove bower from my project?

like image 807
Geesh_SO Avatar asked Jun 23 '17 22:06

Geesh_SO


Video Answer


1 Answers

  1. Delete bower_modules (or wwwroot\lib) folder, depending on which version of tooling you are using
  2. Delete bower.json
like image 116
Tseng Avatar answered Oct 19 '22 02:10

Tseng