Skip to content

Commit 7a45810

Browse files
authored
Update README.md
1 parent bfbb81b commit 7a45810

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ When you're developing your application, you want to run Dart Sass in watch mode
2121

2222
The `dartsass:build` is automatically attached to `assets:precompile`, so before the asset pipeline digests the files, the Dart Sass output will be generated.
2323

24-
## Configuring Stylesheets
24+
## Configuring builds
2525

2626
By default, only `app/assets/stylesheets/application.scss` will be built. If you'd like to change the path of this stylesheet, add additional entry points, or customize the name of the built file, use the `Rails.application.config.dartsass.builds` configuration hash.
2727

2828

2929
```
3030
# config/initializers/dartsass.rb
3131
Rails.application.config.dartsass.builds = {
32-
'app/index.sass' => 'app.css',
33-
'site.scss' => 'site.css'
32+
"app/index.sass" => "app.css",
33+
"site.scss" => "site.css"
3434
}
3535
```
3636

0 commit comments

Comments
 (0)