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
Attempt migrating to Vite.js from Next.js for tangle-dapp first, the reasoning being that we don't really use Next.js' features and also Next.js' "Fast refresh" is actually slow. Vite.js uses modern ES modules and provides the benefit of instant hot-reloading due to its highly optimized HMR.
Get rid of Next.js' config
Implement basic Vite.js config just enough to get the project running
Adjust startup of the tangle-dapp project to use Vite.js instead of Next.js
Optimize Vite.js configuration after everything's set and done
The text was updated successfully, but these errors were encountered:
The main idea here is that the migration itself should mainly consist of config file changes and minor refactoring if any within the actual codebase. Also, react-router-dom would need to be implemented to replace Next.js' app router.
If it actually starts to take more time than that, then we can consider more in-depth strategy for the migration, ex. as @AtelyPham mentioned: creating a new project and migrating on a step by step basis.
Attempt migrating to Vite.js from Next.js for tangle-dapp first, the reasoning being that we don't really use Next.js' features and also Next.js' "Fast refresh" is actually slow. Vite.js uses modern ES modules and provides the benefit of instant hot-reloading due to its highly optimized HMR.
The text was updated successfully, but these errors were encountered: