Skip to content

Commit

Permalink
Fix import formatting and add missing semicolon in plugin.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
mrnasil committed Mar 17, 2024
1 parent bdad6a9 commit 845e3de
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/runtime/plugin.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
//@ts-ignore
import { defineNuxtPlugin } from '#app'
import { defineNuxtPlugin } from "#app";

import useStateMachineInput from "./composables/useStateMachineInput";
export { useStateMachineInput };

export default defineNuxtPlugin(() => {
useStateMachineInput
console.log('Plugin injected by nuxt-rive!')
})
useStateMachineInput;
console.log("Plugin injected by nuxt-rive!");
});

0 comments on commit 845e3de

Please sign in to comment.