-
Notifications
You must be signed in to change notification settings - Fork 1
/
bootstrap-sass.config.js
83 lines (73 loc) · 2.03 KB
/
bootstrap-sass.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
var ExtractTextPlugin = require("extract-text-webpack-plugin");
module.exports = {
verbose: false, // Set to true to show diagnostic information
// Use preBootstrapCustomizations to change $brand-primary. Ensure this preBootstrapCustomizations does not
// depend on other bootstrap variables.
// preBootstrapCustomizations: "./src/style/_pre-bootstrap-customizations.scss",
// Use bootstrapCustomizations to utilize other sass variables defined in preBootstrapCustomizations or the
// _variables.scss file. This is useful to set one customization value based on another value.
// bootstrapCustomizations: "./src/style/_bootstrap-customizations.scss",
mainSass: "./src/style/index.scss",
styleLoader: ExtractTextPlugin.extract("style-loader", "css!sass"),
// ### Scripts
// Any scripts here set to false will never
// make it to the client, it's not packaged
// by webpack.
scripts: {
'transition': false,
'alert': false,
'button': false,
'carousel': false,
'collapse': false,
'dropdown': false,
'modal': false,
'tooltip': false,
'popover': false,
'scrollspy': false,
'tab': false,
'affix': false
},
// ### Styles
// Enable or disable certain less components and thus remove
// the css for them from the build.
styles: {
"mixins": true,
"normalize": true,
"print": true,
"glyphicons": false,
"scaffolding": false,
"type": true,
"code": false,
"grid": true,
"tables": false,
"forms": false,
"buttons": true,
"component-animations": true,
"dropdowns": false,
"button-groups": false,
"input-groups": false,
"navs": false,
"navbar": false,
"breadcrumbs": false,
"pagination": false,
"pager": false,
"labels": false,
"badges": false,
"jumbotron": false,
"thumbnails": false,
"alerts": false,
"progress-bars": false,
"media": false,
"list-group": false,
"panels": false,
"wells": false,
"responsive-embed": false,
"close": false,
"modals": false,
"tooltip": false,
"popovers": false,
"carousel": false,
"utilities": false,
"responsive-utilities": false
}
};