Skip to content

Commit d4b41dd

Browse files
authored
Merge pull request #307 from reflex-dev/specify-tailwind-used-or-not
specify tailwind used or not
2 parents 8cad630 + 3c3897d commit d4b41dd

File tree

30 files changed

+36
-5
lines changed

30 files changed

+36
-5
lines changed

.github/workflows/app_harness.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: app-harness
22
env:
33
REFLEX_DEP: 'reflex'
4-
TELEMETRY_ENABLED: false
4+
REFLEX_TELEMETRY_ENABLED: false
55
APP_HARNESS_HEADLESS: 1
66
on:
77
push:

.github/workflows/check_export.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: check-export
22
env:
33
REFLEX_DEP: 'git+https://github.com/reflex-dev/reflex.git@main'
4-
TELEMETRY_ENABLED: false
4+
REFLEX_TELEMETRY_ENABLED: false
55
on:
66
push:
77
branches: [main]

ag_grid_finance/rxconfig.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22

33
config = rx.Config(
44
app_name="ag_grid_finance",
5+
tailwind=None,
56
)

azure_auth/rxconfig.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22

33
config = rx.Config(
44
app_name="azure_auth",
5+
tailwind=None,
56
)

basic_crud/rxconfig.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22

33
config = rx.Config(
44
app_name="basic_crud",
5+
tailwind=None,
56
)

chat_v2/rxconfig.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22

33
config = rx.Config(
44
app_name="chat_v2",
5+
tailwind=None,
56
)

clock/rxconfig.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22

33
config = rx.Config(
44
app_name="clock",
5+
tailwind=None,
56
)

counter/rxconfig.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44
app_name="counter",
55
db_url="sqlite:///reflex.db",
66
env=rx.Env.DEV,
7+
tailwind=None,
78
)

dalle/rxconfig.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
import reflex as rx
22

3-
config = rx.Config(app_name="dalle")
3+
config = rx.Config(
4+
app_name="dalle",
5+
tailwind=None,
6+
)

data_visualisation/rxconfig.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@
77
config = rx.Config(
88
app_name="data_visualisation",
99
db_url=database_url,
10+
tailwind=None,
1011
)

0 commit comments

Comments
 (0)