_example.settings.config.scss 590 B

123456789101112131415161718192021222324
  1. ///* ========================================================================
  2. // #CONFIG
  3. // ======================================================================== */
  4. // A map of global config settings. Define any project-level configuration,
  5. // feature switches, etc. in here.
  6. $inuit-config: (
  7. env: dev,
  8. healthcheck: false,
  9. debug: true,
  10. );
  11. // You can access data in this map using the following function:
  12. //
  13. // inuit-config(<key>)
  14. //
  15. // Example usage:
  16. //
  17. // @if (inuit-config(debug) == true) { ... }
  18. @function inuit-config($key) {
  19. @return map-get($inuit-config, $key);
  20. }