Fracsi
Fracsi
You can use a workaround to add the `@babel/plugin-transform-typescript` as the first plugin until a fix is submitted: ```js Encore. .configureBabel((config) => { config.plugins.unshift(['@babel/plugin-transform-typescript', { allowDeclareFields: true }]) }) ```
This happens with most of the charts plugins / adapters as well. These are currently unusable with the new AssetMapper setup. ux-chartjs uses `chart.js/auto` package when using the AssetMapper, but...
You can try enabling the legacy openssl providers for nodejs with adding the `--openssl-legacy-provider` flag to `NODE_OPTIONS`. ```shell NODE_OPTIONS=--openssl-legacy-provider npm run dev-server ``` See: https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V17.md#openssl-30
There is already a [support ticket](https://youtrack.jetbrains.com/issue/WEB-55647/Support-Tailwind-css-autocompletion-using-standalone-tailwind-CLI) for it
The bundle uses the app cache (`cache.app` service) to handle the running workers. If you use a shared cache between the containers the consumers will be visible.
You can exclude the filter from autoconfiguring for a temporary workaround.
Duplicate of #6830 #6834 #6839
There is a merged PR #6832, but it is not yet released.
`AdminRoute` was introduced in [4.25.0,](https://github.com/EasyCorp/EasyAdminBundle/releases/tag/v4.25.0) and replaced the `AdminAction` and `AdminDashboard` attributes.
It is not an EA issue. From the [Symfony Routing docs](https://symfony.com/doc/current/routing.html#optional-parameters): > If you want to always include some default value in the generated URL (for example to force the...