Replies: 2 comments
-
Hi 👋, the mode setting you mentioned should be right. I just tried it out on the latest Theme Lab version and everything seems to work. Troubleshooting steps
...
module.exports = {
mode: 'jit',
...
purge: {
enabled: process.env.NODE_ENV === 'production',
content: [
path.resolve(__dirname, '**/*.{js,vue}'),
path.resolve(__dirname, '../shopify/**/*.liquid')
]
}
}
Here are jit arbitrary styles in action: |
Beta Was this translation helpful? Give feedback.
0 replies
-
Ah, thank you! My problem could be that I'm on a slightly old version, I'll look into that. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How can I enable JIT mode for TailwindCSS? I try adding
mode: 'jit'
to the config but that doesn't work for some reason.Btw, great starter theme! I use it for all my new shopify projects now.
Beta Was this translation helpful? Give feedback.
All reactions