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
Currently, import * as THREE from 'three' is used throughout the project, which always forces the entire Three.js package to be bundled with your app when using Drei.
Suggested implementation:
Replace import * as THREE from 'three' statements with named imports:
Describe the feature you'd like:
Currently,
import * as THREE from 'three'
is used throughout the project, which always forces the entire Three.js package to be bundled with your app when using Drei.Suggested implementation:
Replace
import * as THREE from 'three'
statements with named imports:The text was updated successfully, but these errors were encountered: