We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69730d3 commit 9f60640Copy full SHA for 9f60640
2 files changed
.github/workflows/pages.yml
@@ -80,13 +80,7 @@ jobs:
80
working-directory: compiler
81
82
- name: Build Tailwind CSS
83
- run: |
84
- echo "@tailwind base; @tailwind components; @tailwind utilities;" > /tmp/tw-input.css
85
- npx tailwindcss@3 \
86
- --input /tmp/tw-input.css \
87
- --content "demo/index.html,demo/main.js" \
88
- --output demo/tailwind.css \
89
- --minify
+ run: echo "@tailwind base;@tailwind components;@tailwind utilities;" | npx tailwindcss@3 --input - --output demo/tailwind.css --minify
90
91
- name: Setup Pages
92
uses: actions/configure-pages@v5
demo/tailwind.config.js
@@ -0,0 +1,6 @@
1
+/** @type {import('tailwindcss').Config} */
2
+module.exports = {
3
+ content: ['./demo/index.html', './demo/main.js'],
4
+ theme: { extend: {} },
5
+ plugins: [],
6
+}
0 commit comments