.bootstraprc 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. ---
  2. # Output debugging info
  3. # loglevel: debug
  4. # Major version of Bootstrap: 3 or 4
  5. bootstrapVersion: 3
  6. # If Bootstrap version 3 is used - turn on/off custom icon font path
  7. useCustomIconFontPath: false
  8. # Webpack loaders, order matters
  9. styleLoaders:
  10. - style
  11. - css
  12. - sass
  13. # Extract styles to stand-alone css file
  14. # Different settings for different environments can be used,
  15. # It depends on value of NODE_ENV environment variable
  16. # This param can also be set in webpack config:
  17. # entry: 'bootstrap-loader/extractStyles'
  18. extractStyles: false
  19. # env:
  20. # development:
  21. # extractStyles: false
  22. # production:
  23. # extractStyles: true
  24. # Customize Bootstrap variables that get imported before the original Bootstrap variables.
  25. # Thus, derived Bootstrap variables can depend on values from here.
  26. # See the Bootstrap _variables.scss file for examples of derived Bootstrap variables.
  27. #
  28. # preBootstrapCustomizations: ./path/to/bootstrap/pre-customizations.scss
  29. preBootstrapCustomizations: ./customizations.scss
  30. # This gets loaded after bootstrap/variables is loaded
  31. # Thus, you may customize Bootstrap variables
  32. # based on the values established in the Bootstrap _variables.scss file
  33. #
  34. # bootstrapCustomizations: ./path/to/bootstrap/customizations.scss
  35. # Import your custom styles here
  36. # Usually this endpoint-file contains list of @imports of your application styles
  37. #
  38. # appStyles: ./path/to/your/app/styles/endpoint.scss
  39. ### Bootstrap styles
  40. styles:
  41. # Mixins
  42. mixins: true
  43. # Reset and dependencies
  44. normalize: true
  45. print: true
  46. glyphicons: true
  47. # Core CSS
  48. scaffolding: true
  49. type: true
  50. code: true
  51. grid: true
  52. tables: true
  53. forms: true
  54. buttons: true
  55. # Components
  56. component-animations: true
  57. dropdowns: true
  58. button-groups: true
  59. input-groups: true
  60. navs: true
  61. navbar: true
  62. breadcrumbs: true
  63. pagination: true
  64. pager: true
  65. labels: true
  66. badges: true
  67. jumbotron: true
  68. thumbnails: true
  69. alerts: true
  70. progress-bars: true
  71. media: true
  72. list-group: true
  73. panels: true
  74. wells: true
  75. responsive-embed: true
  76. close: true
  77. # Components w/ JavaScript
  78. modals: true
  79. tooltip: true
  80. popovers: true
  81. carousel: true
  82. # Utility classes
  83. utilities: true
  84. responsive-utilities: true
  85. ### Bootstrap scripts
  86. scripts:
  87. transition: true
  88. alert: true
  89. button: true
  90. carousel: true
  91. collapse: true
  92. dropdown: true
  93. modal: true
  94. tooltip: true
  95. popover: true
  96. scrollspy: true
  97. tab: true
  98. affix: true