6 lines
138 B
TypeScript
6 lines
138 B
TypeScript
|
import { defineNuxtPlugin } from '#app'
|
||
|
|
||
|
export default defineNuxtPlugin((nuxtApp) => {
|
||
|
console.log('Plugin injected by wideangle!')
|
||
|
})
|