Hi
I have bower_components directory inside app ( app is my root directory ) and i am using staticFileGlobs: [ rootDir + '/**/*.{js,html,css,scss,png,jpg,gif,svg,eot,ttf,woff,json}' ] which also caches bower_components directory but i want to exclude that directory
Hi I have
bower_components
directory insideapp
(app
is my root directory ) and i am usingstaticFileGlobs: [ rootDir + '/**/*.{js,html,css,scss,png,jpg,gif,svg,eot,ttf,woff,json}' ]
which also cachesbower_components
directory but i want to exclude that directoryI am trying this but this doesn't work
staticFileGlobs: [ rootDir + '/**/*.{js,html,css,scss,png,jpg,gif,svg,eot,ttf,woff,json}', rootDir + '/!bower_components{,/**/*}' ],