Skip to content

Commit

Permalink
fix: update nuxt compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Sep 3, 2022
1 parent 04557b6 commit 25ac965
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ export default defineNuxtModule<ModuleOptions>({
name: '@nuxtjs/harlem',
configKey: 'harlem',
compatibility: {
nuxt: '^3.0.0',
nuxt: '^3.0.0-rc.1',
bridge: false,
},
},
defaults: nuxt => ({
plugins: [nuxt.options.dev && '@harlem/plugin-devtools'].filter(Boolean) as string[],
}),
setup(options, nuxt) {
setup (options, nuxt) {
const runtimeDir = fileURLToPath(new URL('./runtime', import.meta.url))
addTemplate({
filename: 'harlem-plugins.mjs',
Expand Down

0 comments on commit 25ac965

Please sign in to comment.