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
We should be able to modify the regular expression to load en.json5 on Windows. The simplest thing might be to make the regular expression less specific by specifying something like /\.json5$/.
The text was updated successfully, but these errors were encountered:
We use a single .json5 file,
src/locales/en.json5
, which we load usingjson5-loader
:central-frontend/vue.config.js
Lines 14 to 19 in ea41488
However, the regular expression uses
/
as the path separator, and it looks like that doesn't work on Windows: https://forum.getodk.org/t/setting-up-locally-odk-central-front-end-and-odk-central-back-end-for-development-on-windows-7/33364We should be able to modify the regular expression to load
en.json5
on Windows. The simplest thing might be to make the regular expression less specific by specifying something like/\.json5$/
.The text was updated successfully, but these errors were encountered: