Adnan Erlansyah
Adnan Erlansyah
NNuxt
Created by Adnan Erlansyah on 1/31/2025 in #❓・help
Prevent dark mode in mobile when it's activated
@kapa.ai it's in dark mode
11 replies
NNuxt
Created by Adnan Erlansyah on 1/31/2025 in #❓・help
Prevent dark mode in mobile when it's activated
11 replies
NNuxt
Created by Adnan Erlansyah on 1/24/2025 in #❓・help
Make a effect like on the IOS version when navigate to another pages
@kapa.ai how to redirect back to previous page?
50 replies
NNuxt
Created by Adnan Erlansyah on 1/24/2025 in #❓・help
Make a effect like on the IOS version when navigate to another pages
@kapa.ai please just update my code. This is the code in my app.vue
<template>
<!-- <PartialsLoading v-if="isLoading" /> -->
<PartialsSplashScreen v-if="showSplash" />
<NuxtLayout>
<NuxtLoadingIndicator :throttle="0" />
<NuxtPage />
</NuxtLayout>
</template>

<script setup>
</script>

<style>
.page-enter-active,
.page-leave-active {
transition: all 0.4s;
}
.page-enter-from {
opacity: 0;
transform: translateX(50px);
}
.page-leave-to {
opacity: 0;
transform: translateX(-50px);
}
</style>
<template>
<!-- <PartialsLoading v-if="isLoading" /> -->
<PartialsSplashScreen v-if="showSplash" />
<NuxtLayout>
<NuxtLoadingIndicator :throttle="0" />
<NuxtPage />
</NuxtLayout>
</template>

<script setup>
</script>

<style>
.page-enter-active,
.page-leave-active {
transition: all 0.4s;
}
.page-enter-from {
opacity: 0;
transform: translateX(50px);
}
.page-leave-to {
opacity: 0;
transform: translateX(-50px);
}
</style>
50 replies
NNuxt
Created by Adnan Erlansyah on 1/24/2025 in #❓・help
Make a effect like on the IOS version when navigate to another pages
@kapa.ai how about I make an effect when it's go back to the previous page then the effect animation will use fade-right instead of fade-left.
50 replies
NNuxt
Created by Adnan Erlansyah on 1/24/2025 in #❓・help
Make a effect like on the IOS version when navigate to another pages
Yeah I think this is the problem 😅🙏.
50 replies
NNuxt
Created by Adnan Erlansyah on 1/24/2025 in #❓・help
Make a effect like on the IOS version when navigate to another pages
Is it possible?
50 replies
NNuxt
Created by Adnan Erlansyah on 1/24/2025 in #❓・help
Make a effect like on the IOS version when navigate to another pages
Now, how about I make an effect when it's go back to the previous page then the effect animation will use fade-right instead of fade-left.
50 replies
NNuxt
Created by Adnan Erlansyah on 1/24/2025 in #❓・help
Make a effect like on the IOS version when navigate to another pages
I don't know what's happening.
50 replies
NNuxt
Created by Adnan Erlansyah on 1/24/2025 in #❓・help
Make a effect like on the IOS version when navigate to another pages
Sorry sir, it's working now 😅. I've made it like this.
<template>
<!-- <PartialsLoading v-if="isLoading" /> -->
<PartialsSplashScreen v-if="showSplash" />
<NuxtLayout>
<NuxtLoadingIndicator :throttle="0" />
<NuxtPage />
</NuxtLayout>
</template>

<script setup>

</script>

<style>
.page-enter-active,
.page-leave-active {
transition: all 0.4s;
}
.page-enter-from {
opacity: 0;
transform: translateX(50px);
}
.page-leave-to {
opacity: 0;
transform: translateX(-50px);
}
</style>
<template>
<!-- <PartialsLoading v-if="isLoading" /> -->
<PartialsSplashScreen v-if="showSplash" />
<NuxtLayout>
<NuxtLoadingIndicator :throttle="0" />
<NuxtPage />
</NuxtLayout>
</template>

<script setup>

</script>

<style>
.page-enter-active,
.page-leave-active {
transition: all 0.4s;
}
.page-enter-from {
opacity: 0;
transform: translateX(50px);
}
.page-leave-to {
opacity: 0;
transform: translateX(-50px);
}
</style>
50 replies
NNuxt
Created by Adnan Erlansyah on 1/24/2025 in #❓・help
Make a effect like on the IOS version when navigate to another pages
No description
50 replies
NNuxt
Created by Adnan Erlansyah on 1/24/2025 in #❓・help
Make a effect like on the IOS version when navigate to another pages
Okey, I will try to make a new project for the sample.
50 replies
NNuxt
Created by Adnan Erlansyah on 1/24/2025 in #❓・help
Make a effect like on the IOS version when navigate to another pages
No description
50 replies
NNuxt
Created by Adnan Erlansyah on 1/24/2025 in #❓・help
Make a effect like on the IOS version when navigate to another pages
No description
50 replies
NNuxt
Created by Adnan Erlansyah on 1/24/2025 in #❓・help
Make a effect like on the IOS version when navigate to another pages
Uppp
50 replies
NNuxt
Created by Adnan Erlansyah on 1/24/2025 in #❓・help
NODE_ENV isn't changed although it's already updated in the environment
I haven't still tried this yet. But I just want the changes is to be implemented in the npm run dev too
9 replies
NNuxt
Created by Adnan Erlansyah on 1/24/2025 in #❓・help
NODE_ENV isn't changed although it's already updated in the environment
I used the another way by creating special env variable for app mode.
9 replies
NNuxt
Created by Adnan Erlansyah on 1/25/2025 in #❓・help
Prevent change the cookie from javascript or console.log in the browser
@kapa.ai But when I want to set the cookie with the same name again, I got this error.
Cookie “_at” has been rejected because there is already an HTTP-Only cookie but script tried to store a new one.
Cookie “_at” has been rejected because there is already an HTTP-Only cookie but script tried to store a new one.
10 replies
NNuxt
Created by Adnan Erlansyah on 1/24/2025 in #❓・help
Make a effect like on the IOS version when navigate to another pages
Maybe you can give an example from your code or implementation sir if you don't mind 🙏
50 replies
NNuxt
Created by Adnan Erlansyah on 1/24/2025 in #❓・help
Make a effect like on the IOS version when navigate to another pages
No description
50 replies