From e3d97cff2242154ba978ddc66386a0475a0bd5a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Mon, 7 Aug 2023 17:23:40 +0200 Subject: [PATCH] Disable legacy API --- vite.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vite.config.js b/vite.config.js index e076c1f..0acb24d 100644 --- a/vite.config.js +++ b/vite.config.js @@ -22,5 +22,10 @@ export default defineConfig({ assetFileNames: 'assets/sake.min[extname]', } } + }, + define: { + __VUE_I18N_FULL_INSTALL__: true, + __VUE_I18N_LEGACY_API__: false, + __INTLIFY_PROD_DEVTOOLS__: false, } })