Update to use Bootstrap 3 instead of Bootstrap 4. Fixes #3562

This commit is contained in:
Aditya Toshniwal
2018-10-10 12:43:26 +01:00
committed by Dave Page
parent bdf90e67a7
commit 0565f8dd78
82 changed files with 2559 additions and 2486 deletions

View File

@@ -303,5 +303,15 @@ var webpackShimConfig = {
if (module.rawRequest === undefined) { return false; }
return this.pgLibs.indexOf(module.rawRequest) !== -1;
},
/* These will be skipped when webpack picks css/scss files recursively to bundle */
css_bundle_skip: [
'./pgadmin/static',
],
/* These will be included in array formed by recursive traversing for css/scss files */
css_bundle_include: [
'./pgadmin/static/scss/pgadmin.scss',
'./pgadmin/static/css/pgadmin.css',
],
};
module.exports = webpackShimConfig;