Skip to content

Commit

Permalink
fix(test/fixtures): correct import path for Strategies type
Browse files Browse the repository at this point in the history
Update the import path of the `Strategies` type in `nuxt.config.ts`
to ensure it correctly references the module from the appropriate
directory structure. This resolves potential issues with type
resolution in the testing fixtures.
  • Loading branch information
s00d committed Jan 20, 2025
1 parent 962721b commit 2e1488e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/fixtures/strategy/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import MyModule from '../../../src/module'
import type { Strategies } from '~/src/module'
import type { Strategies } from '../../../src/module'

export default defineNuxtConfig({
modules: [
Expand Down

0 comments on commit 2e1488e

Please sign in to comment.