Skip to content

Commit

Permalink
fix: use prerelease constraint
Browse files Browse the repository at this point in the history
In nuxt/framework#7116 we made a breaking change allowing modules to use RC constraints. This PR fixes this.
  • Loading branch information
danielroe authored Sep 3, 2022
1 parent 7845f5d commit a7d2e3f
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 @@ -8,7 +8,7 @@ export default defineNuxtModule<ModuleOptions>({
meta: {
name: 'nuxt-typed-router',
configKey: 'nuxtTypedRouter',
compatibility: { nuxt: '^3.0.0', bridge: false },
compatibility: { nuxt: '^3.0.0-rc.1', bridge: false },
},
setup(moduleOptions, nuxt) {
const srcDir = nuxt.options.srcDir;
Expand Down

0 comments on commit a7d2e3f

Please sign in to comment.