From bfcea5cca08bc4df7a55b5c4bb21193715af98f2 Mon Sep 17 00:00:00 2001 From: Matt Isenhower Date: Sun, 15 Feb 2026 16:36:59 -0800 Subject: [PATCH] Fix issues with node 22 --- src/assets/i18n/index.mjs | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/assets/i18n/index.mjs b/src/assets/i18n/index.mjs index 743f4a9..1617407 100644 --- a/src/assets/i18n/index.mjs +++ b/src/assets/i18n/index.mjs @@ -1,17 +1,17 @@ -import deDE from './de-DE.json' assert { type: 'json' }; -import enGB from './en-GB.json' assert { type: 'json' }; -import enUS from './en-US.json' assert { type: 'json' }; -import esES from './es-ES.json' assert { type: 'json' }; -import esMX from './es-MX.json' assert { type: 'json' }; -import frCA from './fr-CA.json' assert { type: 'json' }; -import frFR from './fr-FR.json' assert { type: 'json' }; -import itIT from './it-IT.json' assert { type: 'json' }; -import jaJP from './ja-JP.json' assert { type: 'json' }; -import koKR from './ko-KR.json' assert { type: 'json' }; -import nlNL from './nl-NL.json' assert { type: 'json' }; -import ruRU from './ru-RU.json' assert { type: 'json' }; -import zhCN from './zh-CN.json' assert { type: 'json' }; -import zhTW from './zh-TW.json' assert { type: 'json' }; +import deDE from './de-DE.json' with { type: 'json' }; +import enGB from './en-GB.json' with { type: 'json' }; +import enUS from './en-US.json' with { type: 'json' }; +import esES from './es-ES.json' with { type: 'json' }; +import esMX from './es-MX.json' with { type: 'json' }; +import frCA from './fr-CA.json' with { type: 'json' }; +import frFR from './fr-FR.json' with { type: 'json' }; +import itIT from './it-IT.json' with { type: 'json' }; +import jaJP from './ja-JP.json' with { type: 'json' }; +import koKR from './ko-KR.json' with { type: 'json' }; +import nlNL from './nl-NL.json' with { type: 'json' }; +import ruRU from './ru-RU.json' with { type: 'json' }; +import zhCN from './zh-CN.json' with { type: 'json' }; +import zhTW from './zh-TW.json' with { type: 'json' }; export default { 'de-DE': deDE,