Replies: 1 comment 1 reply
-
I think this is a valid strategy, in panda css they use the CLI approach as well, they do have sections teaching how to install in any framework/bundler, but there is no specific plugins: |
Beta Was this translation helpful? Give feedback.
1 reply
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.
-
Stylify can be integrated through
stylifyVite
,stylifyNuxt
,stylifyWebpack
and other plugins into random frameworks.This means:
Why?
Because Stylify is a Compiler and can work as a Bundler on it's own, it doesn't require bundlers.
Therefore, all these plugins could be deprecated and the initialization would be always the same:
@stylify/cli
"dev": "stylify dev & vite dev"
It would generate one or multiple CSS files that can be imported as needed.
Bundlers are basically "obsolete" and the H in HMR stands for Headache
Bundlers and are used for the compilation of assets (SCSS, Vue, JSX, Svelte, sometime images, other stuff) in JavaScript runtimes. This will probably (hopefully change):
Beta Was this translation helpful? Give feedback.
All reactions