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
The first lines of the javascripts in this repo are like import { app } from '../../../scripts/app.js';
These javascripts are mapped to URLs like $COMFY_BASE_URL/extensions/comfyui-art-venture/text-switch-case.js. So the import path has 1 more ../ than needed.
This will not break if $COMFY_BASE_URL itself does not have any additional path, e.g. http://localhost:8000/. But it won't work if the URL is like http://localhost:8000/some_path/.
The text was updated successfully, but these errors were encountered:
The first lines of the javascripts in this repo are like
import { app } from '../../../scripts/app.js';
These javascripts are mapped to URLs like
$COMFY_BASE_URL/extensions/comfyui-art-venture/text-switch-case.js
. So the import path has 1 more../
than needed.This will not break if
$COMFY_BASE_URL
itself does not have any additional path, e.g.http://localhost:8000/
. But it won't work if the URL is likehttp://localhost:8000/some_path/
.The text was updated successfully, but these errors were encountered: