import assertionのjsonファイル読み込みでエラー
ローカルで使用していたアプリでエラーが発生。
Uncaught SyntaxError: Unexpected identifier 'assert'
jsonファイルの読み込みに利用していたimport assertionが廃止されてしまったようです。
assert
をwith
に変更することで動作しました。
import list from './list.json' assert { type: 'json' };
↓
import list from './list.json' with { type: 'json' };