mdthansil
mdthansil
Explore posts from servers
NNuxt
Created by mdthansil on 4/9/2025 in #❓・help
Nuxt UI 3 useOverlay() not showing modals
Hey, thank you for the response 😊 . The issue is resolved; my app.vue file was outside of the app folder, and I moved the app.vue inside the app folder. Now it's working fine.
30 replies
NNuxt
Created by mdthansil on 4/9/2025 in #❓・help
Nuxt UI 3 useOverlay() not showing modals
I've tried that, but it's still not working.
30 replies
NNuxt
Created by mdthansil on 4/9/2025 in #❓・help
Nuxt UI 3 useOverlay() not showing modals
Hey 👋 @benjamincanac, I apologize for tagging you. Am I doing this correctly?
30 replies
NNuxt
Created by mdthansil on 4/9/2025 in #❓・help
Nuxt UI 3 useOverlay() not showing modals
not wokrin @kapa.ai
30 replies
NNuxt
Created by mdthansil on 4/9/2025 in #❓・help
Nuxt UI 3 useOverlay() not showing modals
i have added but still not wokring @kapa.ai
30 replies
NNuxt
Created by mdthansil on 4/9/2025 in #❓・help
Nuxt UI 3 useOverlay() not showing modals
<template>
<UModal
title="Login"
description="Login to your account to access all features.">
<template #body>
<div>Modal content</div>
</template>
</UModal>
</template>
<template>
<UModal
title="Login"
description="Login to your account to access all features.">
<template #body>
<div>Modal content</div>
</template>
</UModal>
</template>
this is my login modal @kapa.ai
30 replies
NNuxt
Created by mdthansil on 4/9/2025 in #❓・help
Nuxt UI 3 useOverlay() not showing modals
I have already added the UApp. This is my app.vue:
<template>
<UApp>
<NuxtLoadingIndicator />
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</UApp>
</template>
<template>
<UApp>
<NuxtLoadingIndicator />
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</UApp>
</template>
@kapa.ai
30 replies
KKysely
Created by mdthansil on 6/8/2023 in #help
How can I use Kysely migration inside NextJS 13 project?
Fixed the issue by replacing ts-node with tsx and also changed migrationFolder path to absolute path
const migrator = new Migrator({
db,
provider: new FileMigrationProvider({
fs,
path,
migrationFolder: path.resolve(path.join(__dirname, 'migrations')),
}),
});
const migrator = new Migrator({
db,
provider: new FileMigrationProvider({
fs,
path,
migrationFolder: path.resolve(path.join(__dirname, 'migrations')),
}),
});
3 replies
KKysely
Created by Meithz (Razioner) on 4/2/2023 in #help
Trouble running migrations
Use tsx instead of ts-node and use absolute path for migrationFolder
const migrator = new Migrator({
db,
provider: new FileMigrationProvider({
fs,
path,
migrationFolder: path.resolve(path.join(__dirname, 'migrations')),
}),
});
const migrator = new Migrator({
db,
provider: new FileMigrationProvider({
fs,
path,
migrationFolder: path.resolve(path.join(__dirname, 'migrations')),
}),
});
80 replies
KKysely
Created by mdthansil on 6/7/2023 in #help
How can i enable postgres Extensions (eg: uuid) with in Kysely Migration File
Wow! Thanks man ❤️
4 replies