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
The settings-development.json is causing the following warning due to node needing an experimental feature for importing .json files.
ExperimentalWarning: Importing JSON modules is an experimental feature. This feature could change at any time
(Use `node --trace-warnings ...` to show where the warning was created)
This experimental feature can be removed at any moment, which means it would be better to store that data elsewhere (for example in a .env file)
To get rid of the warning, simply remove --experimental-json-modules from start:dev and start:prod inside package.json
The text was updated successfully, but these errors were encountered:
The settings-development.json is causing the following warning due to node needing an experimental feature for importing .json files.
This experimental feature can be removed at any moment, which means it would be better to store that data elsewhere (for example in a .env file)
To get rid of the warning, simply remove
--experimental-json-modules
fromstart:dev
andstart:prod
inside package.jsonThe text was updated successfully, but these errors were encountered: