Skip to content

Commit fe656e5

Browse files
committed
chore: disable the daisyui output
1 parent f001b87 commit fe656e5

File tree

5 files changed

+8
-1
lines changed

5 files changed

+8
-1
lines changed

.github/workflows/check-python.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ on:
55

66
jobs:
77
check-python:
8-
runs-on: 'ubuntu-latest'
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
matrix:
11+
os: [ubuntu-latest, windows-latest, macos-latest]
912
steps:
1013
- name: Checkout source code
1114
uses: actions/checkout@v4

examples/cloud_provider/production_react_netlify/tailwind.config.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ module.exports = {
66
},
77
daisyui: {
88
themes: ['lofi'],
9+
logs: false,
910
},
1011
plugins: [require('daisyui')],
1112
}

examples/cloud_provider/production_react_vercel/tailwind.config.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ module.exports = {
66
},
77
daisyui: {
88
themes: ['lofi'],
9+
logs: false,
910
},
1011
plugins: [require('daisyui')],
1112
}

examples/production_react/tailwind.config.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ module.exports = {
66
},
77
daisyui: {
88
themes: ['lofi'],
9+
logs: false,
910
},
1011
plugins: [require('daisyui')],
1112
}

template_content/{% if use_tailwind %}tailwind.config.cjs{% endif %}.jinja

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ module.exports = {
77
{% if use_daisy_ui -%}
88
daisyui: {
99
themes: ['lofi'],
10+
logs: false,
1011
},
1112
plugins: [require('daisyui')],
1213
{%- endif %}

0 commit comments

Comments
 (0)