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
(doing import via import bs5dialog from "@ymlluo/bs5dialog/src/bs5dialog";)
Running webpack, these are the errors:
ERROR Failed to compile with 10 errors
Module build failed: Module not found:
"./node_modules/@ymlluo/bs5dialog/src/components/alert.js" contains a reference to the file "bootstrap".
This file can not be found, please check it for typos or update it if the file got moved.
"./node_modules/@ymlluo/bs5dialog/src/components/load.js" contains a reference to the file "../utils".
This file can not be found, please check it for typos or update it if the file got moved.
"./node_modules/@ymlluo/bs5dialog/src/startup.js" contains a reference to the file "./components/load".
This file can not be found, please check it for typos or update it if the file got moved.
"./node_modules/@ymlluo/bs5dialog/src/startup.js" contains a reference to the file "./components/offcanvas".
This file can not be found, please check it for typos or update it if the file got moved.
"./node_modules/@ymlluo/bs5dialog/src/startup.js" contains a reference to the file "./components/alert".
This file can not be found, please check it for typos or update it if the file got moved.
"./node_modules/@ymlluo/bs5dialog/src/startup.js" contains a reference to the file "./components/confirm".
This file can not be found, please check it for typos or update it if the file got moved.
"./node_modules/@ymlluo/bs5dialog/src/startup.js" contains a reference to the file "./components/prompt".
This file can not be found, please check it for typos or update it if the file got moved.
"./node_modules/@ymlluo/bs5dialog/src/startup.js" contains a reference to the file "./components/message".
This file can not be found, please check it for typos or update it if the file got moved.
"./node_modules/@ymlluo/bs5dialog/src/startup.js" contains a reference to the file "./components/toast".
This file can not be found, please check it for typos or update it if the file got moved.
"./node_modules/@ymlluo/bs5dialog/src/startup.js" contains a reference to the file "./i18n".
This file can not be found, please check it for typos or update it if the file got moved.
I think my compiler is mad because if the import should "./utils" it handles that as a folder and tries to import "./utils/index.js" and it must be "./utils.js" so the compile knows that the file to import is named "utils.js".
I tried around in my code and wrote a ".js" behind every internal import which resolves my errors there. But after that my browser is also mad, because "bs5dialog" is not defined at "bs5dialog.js" row 35.
The text was updated successfully, but these errors were encountered:
I got errors when i try to import:
(doing import via
import bs5dialog from "@ymlluo/bs5dialog/src/bs5dialog";
)Running webpack, these are the errors:
I think my compiler is mad because if the import should "./utils" it handles that as a folder and tries to import "./utils/index.js" and it must be "./utils.js" so the compile knows that the file to import is named "utils.js".
I tried around in my code and wrote a ".js" behind every internal import which resolves my errors there. But after that my browser is also mad, because "bs5dialog" is not defined at "bs5dialog.js" row 35.
The text was updated successfully, but these errors were encountered: