Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 125a28f

Browse files
committedOct 5, 2023
fix: ✨ use relative imports as in main
1 parent d720b8a commit 125a28f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎web/debug.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { app } from '../../scripts/app.js'
1212
import * as shared from './comfy_shared.js'
1313
import { log } from './comfy_shared.js'
1414
import { MtbWidgets } from './mtb_widgets.js'
15-
import { o3d_to_three } from '/extensions/mtb/geometry_nodes.js'
15+
import { o3d_to_three } from './geometry_nodes.js'
1616

1717
// TODO: respect inputs order...
1818

‎web/mtb_widgets.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import { api } from '../../scripts/api.js'
1212

1313
import parseCss from './extern/parse-css.js'
1414
import * as shared from './comfy_shared.js'
15-
import { o3d_to_three, make_wireframe } from '/extensions/mtb/geometry_nodes.js'
16-
import * as THREE from '/extensions/mtb/extern/three.module.js'
15+
import { o3d_to_three, make_wireframe } from './geometry_nodes.js'
16+
import * as THREE from './extern/three.module.js'
1717

1818
import { log } from './comfy_shared.js'
1919

0 commit comments

Comments
 (0)
Please sign in to comment.