Skip to content

Commit

Permalink
fix(module): remove .ts ext from app.config
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed May 4, 2023
1 parent 5facfee commit a076cae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default defineNuxtModule<ModuleOptions>({
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
Expand Down

0 comments on commit a076cae

Please sign in to comment.