You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/bitstyles_phoenix.ex
+11-1Lines changed: 11 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -53,10 +53,20 @@ defmodule BitstylesPhoenix do
53
53
54
54
```elixir
55
55
config :bitstyles_phoenix,
56
-
bitstyles_version: "1.5.0"
56
+
bitstyles_version: "3.0.0"
57
57
```
58
58
Release candidate versions are currently not supported.
59
59
60
+
### Autoprefixer
61
+
62
+
Bitstyles phoenix will use some classes that require autoprefixer even for newer browers.
63
+
If you can't run autoprefixer for some reason (not recommended) you can set `autoprefixer: false`
64
+
to make bitstyles_phoenix only output classes that are well supported in recent browsers.
65
+
66
+
```elixir
67
+
config :bitstyles_phoenix, autoprefixer: false
68
+
```
69
+
60
70
### Translating error messages
61
71
62
72
Generated phoenix apps usally come with a helper for [translating error messages](https://github.com/phoenixframework/phoenix/blob/496123b66c03c9764be623d2c32b4af611837eb0/installer/templates/phx_web/views/error_helpers.ex#L23-L46)
0 commit comments