We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After configuring Tailwind in a project created with hyperapp-starter I noticed 2 things:
hyperapp-starter
<div class="text-gray-500">Hello</div>
import base from '/src/styles/base.css' export default () => ( <div class={base['text-gray-500']}>Hello</div> )
Is there a recommended way to use/configure Tailwind with hyperstatic?
The text was updated successfully, but these errors were encountered:
Hi! Hyperstatic is bundler agnostic, the current hyperstatic-starter uses vite for dev tooling, so it probably has to do with the vite.config.js. I would suggest to try removing these lines from your project and try again: https://github.com/loteoo/hyperstatic-starter/blob/master/vite.config.js#L6-L10
hyperstatic-starter
Sorry, something went wrong.
No branches or pull requests
After configuring Tailwind in a project created with
hyperapp-starter
I noticed 2 things:<div class="text-gray-500">Hello</div>
, but instead, had to use them like:Is there a recommended way to use/configure Tailwind with hyperstatic?
The text was updated successfully, but these errors were encountered: