File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed
spec/dummy/config/initializers Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true
2+
3+ # Configure Dart Sass to silence Bootstrap deprecation warnings
4+ # These warnings are from Bootstrap's internal implementation and will be
5+ # fixed when Bootstrap releases a Dart Sass 3.0 compatible version.
6+ #
7+ # Warnings silenced:
8+ # - import: Bootstrap still uses @import (will be removed in Bootstrap 6)
9+ # - global-builtin: Bootstrap uses global functions (type-of, unit, map-has-key)
10+ # - color-functions: Bootstrap uses deprecated color functions (red, green, blue)
11+
12+ Rails . application . config . sass . quiet_deps = true
13+ Rails . application . config . sass . silence_deprecations = %w[
14+ import
15+ global-builtin
16+ color-functions
17+ ]
Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true
2+
3+ # Configure Dart Sass to silence Bootstrap deprecation warnings
4+ # These warnings are from Bootstrap's internal implementation and will be
5+ # fixed when Bootstrap releases a Dart Sass 3.0 compatible version.
6+ #
7+ # Warnings silenced:
8+ # - import: Bootstrap still uses @import (will be removed in Bootstrap 6)
9+ # - global-builtin: Bootstrap uses global functions (type-of, unit, map-has-key)
10+ # - color-functions: Bootstrap uses deprecated color functions (red, green, blue)
11+
12+ Rails . application . config . sass . quiet_deps = true
13+ Rails . application . config . sass . silence_deprecations = %w[
14+ import
15+ global-builtin
16+ color-functions
17+ ]
You can’t perform that action at this time.
0 commit comments