Skip to content

Commit

Permalink
fix: ✨ use relative imports as in main
Browse files Browse the repository at this point in the history
  • Loading branch information
melMass committed Oct 5, 2023
1 parent d720b8a commit 125a28f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion web/debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { app } from '../../scripts/app.js'
import * as shared from './comfy_shared.js'
import { log } from './comfy_shared.js'
import { MtbWidgets } from './mtb_widgets.js'
import { o3d_to_three } from '/extensions/mtb/geometry_nodes.js'
import { o3d_to_three } from './geometry_nodes.js'

// TODO: respect inputs order...

Expand Down
4 changes: 2 additions & 2 deletions web/mtb_widgets.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import { api } from '../../scripts/api.js'

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

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

Expand Down

0 comments on commit 125a28f

Please sign in to comment.