Sky Winston
Sky Winston
This is very helpful, and I can't emphasize enough how important it is to build the Tailwind file using: `./node_modules/.bin/tailwind build app/javascript/src/styles.css -o app/javascript/src/application.css`. I find that its easiest to...
@jvanbaarsen You're absolutely correct. I couldn't get this to work until I ran `./node_modules/.bin/tailwind build app/javascript/src/styles.css -o app/javascript/src/application.css` and assumed that webpack was missing the initial build step. But running...
@jvanbaarsen Do you know if this is watching changes to the `application.scss` file or `style.css` file in @jasoncharnes case. This is where you have `@tailwind preflight` and `@tailwind utilities`, plus...
Setting `notifyOnNetworkStatusChange: true` on the options object caused the `refetch` returned from `useQuery` to trigger the `onCompleted` lifecycle event. The docs don't make this obvious, as the description of `notifyOnNetworkStatusChange`...