Supported Versions
React
The following React versions are supported:
- 16.x (only supported when using our version 2.x)
- 17.x
- 18.x
- 19.x
React Router
- 5.x
- 6.x
- 7.x
If you are using react-router version 6.4.0 or higher, please follow the approach shown inside the sandbox to ensure the seamless integration of the Ingestro Importer within your application: Sandbox
If you are using react-router version 7.0.0 or higher, please follow the approach shown inside the sandbox to ensure the seamless integration of the Ingestro Importer within your application: Sandbox
Angular
The following Angular versions are supported:
- 12.x
- 13.x
- 14.x
- 15.x
- 16.x
- 17.x
- 18.x
- 19.x
- 20.x
- 21.x
Angular uses Vite as its internal bundler. In development environments, JS workers may run on the main thread but will work correctly in production builds. This means development performance may be lower compared to production. To enable JS workers in development, add the following configuration to angular.json under projects.architect.assets:
{
"glob": "workers/**/*.js",
"input": "node_modules/@ingestro/importer-angular",
"output": "/"
}
Vue
The following Vue.js versions are supported:
- 2.x (only supported when using our version 2.9 or lower)
- 3.x
Vue uses Vite as its internal bundler. In development environments, JS workers may run on the main thread but will work correctly in production builds. This means development performance may be lower compared to production.
Next.js
The following Next.js versions are supported:
- 10.x
- 11.x
- 12.x
- 13.x
- 14.x
- 15.x
- 16.x
As of Next.js v16.x.x, Turbopack is the default bundler. To avoid compile errors, you may need to force the use of Webpack as the bundler via the --webpack flag. See the First Steps section for more details.