fix: change frontend browserslist to fix build

Next 14.1 has a bug when specific browser targets are added. I've added https://github.com/vercel/next.js/issues/60909#issuecomment-1905103530 as workaround.

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2024-02-10 15:50:37 +01:00
parent 631b641041
commit c187f39046

View file

@ -23,19 +23,13 @@
"test:ci": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" NODE_ENV=test jest --coverage", "test:ci": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" NODE_ENV=test jest --coverage",
"test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" NODE_ENV=test jest" "test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" NODE_ENV=test jest"
}, },
"browserslist": { "browserslist": [
"production": [ "Chrome 118",
">0.2%", ">0.2%",
"Firefox ESR", "Firefox ESR",
"not dead", "not dead",
"not op_mini all" "not op_mini all"
], ],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": { "dependencies": {
"@codemirror/autocomplete": "6.11.1", "@codemirror/autocomplete": "6.11.1",
"@codemirror/commands": "6.3.3", "@codemirror/commands": "6.3.3",