-
index.js:489 BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. If you want to include a polyfill, you need to: |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments 6 replies
-
@lajith111 can you share your package.json. which framework are you using. Did this also happen in the tutorial apps références in the sqlite plugin readme |
Beta Was this translation helpful? Give feedback.
-
@lajith111 did you temove the angular cache and the browser cache. Can you check in the browser if the <,jeep-sqlite> tag is there |
Beta Was this translation helpful? Give feedback.
-
In your browser you inspect the éléments and you go to the tab element in the developer tools you must see the jeep-sqlite tag |
Beta Was this translation helpful? Give feedback.
-
@lajith111 try to clone the tutorial and install it i shoyld load the latest of angular check the version when installed and test it.. i am travelling so i will not be able to help you more. Tell me if the tutorial updated to the latest release works |
Beta Was this translation helpful? Give feedback.
-
@lajith111 jeep-sqlite does not use 'crypto' module in fact the latest release of sql.js did, so the build of jeep-sqlite esm/jeep-sqlite-entry.js referred to crypto. To avoid the error message in angular create a webpack.config.js file including module.exports = {
resolve: {
fallback: {
crypto: false
// Add more fallbacks if needed
}
}
}; |
Beta Was this translation helpful? Give feedback.
-
Latest Version fixed the issue..Thanks |
Beta Was this translation helpful? Give feedback.
-
@lajith111 sorry for the time it takes to fix it. Thank you for your feeback. |
Beta Was this translation helpful? Give feedback.
@lajith111 jeep-sqlite does not use 'crypto' module in fact the latest release of sql.js did, so the build of jeep-sqlite esm/jeep-sqlite-entry.js referred to crypto. To avoid the error message in angular create a webpack.config.js file including