We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21a47c2 commit 47eee78Copy full SHA for 47eee78
1 file changed
.github/workflows/pages.yml
@@ -82,9 +82,15 @@ jobs:
82
- name: Build Tailwind CSS
83
run: npx tailwindcss@3 --input /dev/null --content "demo/index.html,demo/main.js" --output demo/tailwind.css --minify
84
85
- - name: Stage demo
86
- run: cp compiler/target/wasm32-unknown-unknown/release/compiler_lib.wasm demo/
87
-
+ - name: Build Tailwind CSS
+ run: |
+ echo "@tailwind base; @tailwind components; @tailwind utilities;" > /tmp/tw-input.css
88
+ npx tailwindcss@3 \
89
+ --input /tmp/tw-input.css \
90
+ --content "demo/index.html,demo/main.js" \
91
+ --output demo/tailwind.css \
92
+ --minify
93
+
94
- name: Setup Pages
95
uses: actions/configure-pages@v5
96
with:
0 commit comments