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
{{ message }}
This repository was archived by the owner on Jan 16, 2023. It is now read-only.
go to file (in node_modules)
\knex\lib\knex.js
search for
Dialect = require(
you will see a line looks like
Dialect = require("./dialects/${resolvedClientName}/index.js");
change it to what you using (for example sqlite3)
Dialect = require("./dialects/sqlite3/index.js");
then run ncc again
i know this is tricky but that the only way i found how to solve it
this problem is because ncc cannot resolve dynamic requires
The text was updated successfully, but these errors were encountered: