2016-06-03 16:08:03 -04:00
|
|
|
---
|
|
|
|
# Output debugging info
|
|
|
|
# loglevel: debug
|
|
|
|
|
|
|
|
# Major version of Bootstrap: 3 or 4
|
|
|
|
bootstrapVersion: 3
|
|
|
|
|
|
|
|
# If Bootstrap version 3 is used - turn on/off custom icon font path
|
|
|
|
useCustomIconFontPath: true
|
|
|
|
|
|
|
|
# Webpack loaders, order matters
|
|
|
|
styleLoaders:
|
2017-04-21 05:06:33 -04:00
|
|
|
- style-loader
|
|
|
|
- css-loader
|
|
|
|
- sass-loader
|
2016-06-03 16:08:03 -04:00
|
|
|
|
|
|
|
# Extract styles to stand-alone css file
|
|
|
|
# Different settings for different environments can be used,
|
|
|
|
# It depends on value of NODE_ENV environment variable
|
|
|
|
# This param can also be set in webpack config:
|
|
|
|
# entry: 'bootstrap-loader/extractStyles'
|
2017-10-09 08:28:44 -04:00
|
|
|
# extractStyles: false
|
|
|
|
env:
|
|
|
|
development:
|
|
|
|
extractStyles: false
|
|
|
|
production:
|
|
|
|
extractStyles: true
|
2016-06-03 16:08:03 -04:00
|
|
|
|
|
|
|
# Customize Bootstrap variables that get imported before the original Bootstrap variables.
|
|
|
|
# Thus original Bootstrap variables can depend on values from here. All the bootstrap
|
|
|
|
# variables are configured with !default, and thus, if you define the variable here, then
|
|
|
|
# that value is used, rather than the default. However, many bootstrap variables are derived
|
|
|
|
# from other bootstrap variables, and thus, you want to set this up before we load the
|
|
|
|
# official bootstrap versions.
|
|
|
|
# For example, _variables.scss contains:
|
|
|
|
# $input-color: $gray !default;
|
|
|
|
# This means you can define $input-color before we load _variables.scss
|
|
|
|
preBootstrapCustomizations: ./src/sass/pre-customizations.scss
|
|
|
|
|
|
|
|
# This gets loaded after bootstrap/variables is loaded and before bootstrap is loaded.
|
|
|
|
# A good example of this is when you want to override a bootstrap variable to be based
|
|
|
|
# on the default value of bootstrap. This is pretty specialized case. Thus, you normally
|
|
|
|
# just override bootrap variables in preBootstrapCustomizations so that derived
|
|
|
|
# variables will use your definition.
|
|
|
|
#
|
|
|
|
# For example, in _variables.scss:
|
|
|
|
# $input-height: (($font-size-base * $line-height) + ($input-padding-y * 2) + ($border-width * 2)) !default;
|
|
|
|
# This means that you could define this yourself in preBootstrapCustomizations. Or you can do
|
|
|
|
# this in bootstrapCustomizations to make the input height 10% bigger than the default calculation.
|
|
|
|
# Thus you can leverage the default calculations.
|
|
|
|
# $input-height: $input-height * 1.10;
|
|
|
|
# bootstrapCustomizations: ./app/styles/bootstrap/customizations.scss
|
|
|
|
|
|
|
|
# Import your custom styles here. You have access to all the bootstrap variables. If you require
|
|
|
|
# your sass files separately, you will not have access to the bootstrap variables, mixins, clases, etc.
|
|
|
|
# Usually this endpoint-file contains list of @imports of your application styles.
|
|
|
|
appStyles: ./src/sass/application.scss
|
|
|
|
|
|
|
|
### Bootstrap styles
|
|
|
|
styles:
|
|
|
|
|
|
|
|
# Mixins
|
|
|
|
mixins: true
|
|
|
|
|
|
|
|
# Reset and dependencies
|
|
|
|
normalize: true
|
|
|
|
print: true
|
|
|
|
glyphicons: true
|
|
|
|
|
|
|
|
# Core CSS
|
|
|
|
scaffolding: true
|
|
|
|
type: true
|
|
|
|
code: false
|
|
|
|
grid: true
|
|
|
|
tables: true
|
|
|
|
forms: true
|
|
|
|
buttons: true
|
|
|
|
|
|
|
|
# Components
|
|
|
|
component-animations: false
|
|
|
|
dropdowns: true
|
|
|
|
button-groups: true
|
|
|
|
input-groups: true
|
2017-10-30 15:26:06 -04:00
|
|
|
navs: true
|
2016-06-03 16:08:03 -04:00
|
|
|
navbar: false
|
|
|
|
breadcrumbs: false
|
|
|
|
pagination: true
|
|
|
|
pager: false
|
2016-06-07 16:34:02 -04:00
|
|
|
labels: true
|
2016-06-03 16:08:03 -04:00
|
|
|
badges: false
|
|
|
|
jumbotron: false
|
|
|
|
thumbnails: true
|
2016-06-04 04:05:17 -04:00
|
|
|
alerts: true
|
2016-06-03 16:08:03 -04:00
|
|
|
progress-bars: true
|
|
|
|
media: true
|
|
|
|
list-group: false
|
2017-04-21 05:06:33 -04:00
|
|
|
panels: true
|
2016-06-03 16:08:03 -04:00
|
|
|
wells: false
|
2016-06-04 04:05:17 -04:00
|
|
|
responsive-embed: true
|
2016-11-04 11:23:18 -04:00
|
|
|
close: true
|
2016-06-03 16:08:03 -04:00
|
|
|
|
|
|
|
# Components w/ JavaScript
|
2016-11-04 11:23:18 -04:00
|
|
|
modals: true
|
2016-06-03 16:08:03 -04:00
|
|
|
tooltip: false
|
|
|
|
popovers: false
|
|
|
|
carousel: false
|
|
|
|
|
|
|
|
# Utility classes
|
|
|
|
utilities: true
|
|
|
|
responsive-utilities: true
|
|
|
|
|
|
|
|
### Bootstrap scripts
|
|
|
|
scripts:
|
|
|
|
transition: false
|
2016-06-07 16:34:02 -04:00
|
|
|
alert: false
|
2016-06-03 16:08:03 -04:00
|
|
|
button: false
|
|
|
|
carousel: false
|
|
|
|
collapse: false
|
|
|
|
dropdown: false
|
|
|
|
modal: false
|
|
|
|
tooltip: false
|
|
|
|
popover: false
|
|
|
|
scrollspy: false
|
|
|
|
tab: false
|
|
|
|
affix: false
|