fix(test-app): add missing plugin imports for proper registration
- Import @capacitor/core for Capacitor platform detection - Import @timesafari/daily-notification-plugin for plugin availability - Resolves "Plugin: Not Available" issue in test app Plugin now properly registers and becomes available at runtime.
This commit is contained in:
@@ -7,6 +7,10 @@ import { createPinia } from 'pinia'
|
|||||||
import App from './App.vue'
|
import App from './App.vue'
|
||||||
import router from './router'
|
import router from './router'
|
||||||
|
|
||||||
|
// Import Capacitor plugins
|
||||||
|
import '@capacitor/core'
|
||||||
|
import '@timesafari/daily-notification-plugin'
|
||||||
|
|
||||||
const app = createApp(App)
|
const app = createApp(App)
|
||||||
|
|
||||||
app.use(createPinia())
|
app.use(createPinia())
|
||||||
|
|||||||
Reference in New Issue
Block a user