10 lines
183 B
TypeScript
10 lines
183 B
TypeScript
export default defineNuxtPlugin(async () => {
|
|
const { initializeNativePush, isNativeApp } = usePush();
|
|
|
|
if (!isNativeApp()) {
|
|
return;
|
|
}
|
|
|
|
await initializeNativePush();
|
|
});
|