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
Trying to import a component, that use tn-models, in the test file gives this error.
After a research, I could find that .mjs files, must use file extensions when importing modules. Ie import Form, { FormField, FormArray } from './forms.js'; insted of import Form, { FormField, FormArray } from './forms'; . Even adding the file extensions, it appears more issues:
The text was updated successfully, but these errors were encountered:
Trying to import a component, that use
tn-models
, in the test file gives this error.After a research, I could find that
.mjs
files, must use file extensions when importing modules. Ieimport Form, { FormField, FormArray } from './forms.js';
insted ofimport Form, { FormField, FormArray } from './forms';
. Even adding the file extensions, it appears more issues:The text was updated successfully, but these errors were encountered: