hacca8

import assertionのjsonファイル読み込みでエラー

ローカルで使用していたアプリでエラーが発生。

Uncaught SyntaxError: Unexpected identifier 'assert'

jsonファイルの読み込みに利用していたimport assertionが廃止されてしまったようです。

参考: Chrome 126 リリース

assertwithに変更することで動作しました。

import list from './list.json' assert { type: 'json' };

import list from './list.json' with { type: 'json' };