You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is not usual to see source files that the browser does not support in HTML. While this is possible, we need to decide if we want to support it as it's very vite specific, and the same index.html would not work if you switch tooling.
Official plugins like the one for vue does not support their custom extensions.
We could support direct imports of
cljs
files in the index.html.This will allow them to specify a script tag like the following (Instead of the js file we have currently):
In order to support this we will need to plug into vite's transformindexhtml. We would write the code to rewrite the script tag to:
Then the rest of the plugin will work as usual.
It is not usual to see source files that the browser does not support in HTML. While this is possible, we need to decide if we want to support it as it's very vite specific, and the same index.html would not work if you switch tooling.
Official plugins like the one for vue does not support their custom extensions.
The text was updated successfully, but these errors were encountered: