解決升級node.js 20版本後import json file的警示'assert' is deprecated in import statements and support will be removed in a future version
完整的警示訊息是
(node:16142) V8: file:///workspace//src/main.mjs:3 'assert' is deprecated in import statements and support will be removed in a future version; use 'with' instead
原本
import serviceAccount from '../serviceAccount.json' assert { type: 'json' };
改成
import serviceAccount from '../serviceAccount.json' with {type: 'json'};
解決!
留言