From a076cae4bfa387e1fd9800741b10702896c21ad2 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Thu, 4 May 2023 15:38:32 +0200 Subject: [PATCH] fix(module): remove `.ts` ext from app.config --- src/module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module.ts b/src/module.ts index e745a513..714615b0 100644 --- a/src/module.ts +++ b/src/module.ts @@ -65,7 +65,7 @@ export default defineNuxtModule({ nuxt.options.css.push(resolve(runtimeDir, 'ui.css')) nuxt.hook('app:resolve', (app) => { - app.configs.push(resolve(runtimeDir, 'app.config.ts')) + app.configs.push(resolve(runtimeDir, 'app.config')) }) // @ts-ignore