handshake
handshake
NNuxt
Created by elizeorocha on 9/25/2024 in #❓・help
Low Lighthouse/PageSpeed Performance on Mobile with Nuxt 3
there should be diagnostics down below that describe what could be causing it
10 replies
NNuxt
Created by kogratte on 9/24/2024 in #❓・help
Unresponsive navigateTo
should that be
<NuxtLink :to="...">
<NuxtLink :to="...">
?
2 replies
NNuxt
Created by finding home on 6/18/2024 in #❓・help
two pages use pinia, have Hydration node mismatch warning
is the hydration an ssr issue? if so, you might need to use a conditional to know whatever you're expecting is finalized. Is this the final error, or is there more to the message?
2 replies
NNuxt
Created by MrDeer on 6/13/2024 in #❓・help
How to use useState with functions inside
is that a nuxt thing?
6 replies
NNuxt
Created by MrDeer on 6/13/2024 in #❓・help
How to use useState with functions inside
No description
6 replies
NNuxt
Created by dmarr on 6/14/2024 in #❓・help
Resolve a path relative to layer?
then i'd suggest stop using layers, and start using composables, or stores
25 replies
NNuxt
Created by dmarr on 6/14/2024 in #❓・help
Resolve a path relative to layer?
have you looked into this by any chance? https://pinia.vuejs.org/ssr/nuxt.html
25 replies
NNuxt
Created by dmarr on 6/14/2024 in #❓・help
Resolve a path relative to layer?
but how you're trying to implement pinia is off i think
25 replies
NNuxt
Created by dmarr on 6/14/2024 in #❓・help
Resolve a path relative to layer?
you can use pinia still, or create your own state
25 replies
NNuxt
Created by dmarr on 6/14/2024 in #❓・help
Resolve a path relative to layer?
or a store?
25 replies
NNuxt
Created by dmarr on 6/14/2024 in #❓・help
Resolve a path relative to layer?
why don't you just use a composable?
25 replies
NNuxt
Created by dmarr on 6/14/2024 in #❓・help
Resolve a path relative to layer?
are you building a nuxt app, or are you building a module that would be used in a nuxt app? bc that's two difference scenarios
25 replies
NNuxt
Created by dmarr on 6/14/2024 in #❓・help
Resolve a path relative to layer?
ya i guess i'm trying to understand your reasoning behind using layers vs. nuxt itself
25 replies
NNuxt
Created by dmarr on 6/14/2024 in #❓・help
Resolve a path relative to layer?
oh, is this your own module you're developing?
25 replies
NNuxt
Created by dmarr on 6/14/2024 in #❓・help
Resolve a path relative to layer?
sorry idk much about nuxt/kit, but why are you using this vs. nuxt?
25 replies
NNuxt
Created by dmarr on 6/14/2024 in #❓・help
Resolve a path relative to layer?
why are you trying to "resolve" pinia? Isn't that a module to be used like
import { defineStore } from 'pinia';
import { defineStore } from 'pinia';
25 replies
NNuxt
Created by dmarr on 6/14/2024 in #❓・help
Resolve a path relative to layer?
is this a nuxt issue?
25 replies
NNuxt
Created by Patricius on 6/13/2024 in #❓・help
Dockerized Nuxt3 with Bun Cannot find module "@vue/reactivity"
also just curious, but what if you created a "temp directory"? Just thinking that instead of overriding your parent directory, you could use a temp one (e.g. /temp/dev)
RUN mkdir -p /temp/dev
COPY package.json bun.lockb /temp/dev/
RUN mkdir -p /temp/dev
COPY package.json bun.lockb /temp/dev/
and then you'd update
FROM base AS development
COPY --from=dependencies /temp/dev/node_modules ./node_modules # <-- update this dir
COPY . .
FROM base AS development
COPY --from=dependencies /temp/dev/node_modules ./node_modules # <-- update this dir
COPY . .
18 replies
NNuxt
Created by Patricius on 6/13/2024 in #❓・help
Dockerized Nuxt3 with Bun Cannot find module "@vue/reactivity"
idk if they're experiecing the same module issue, but it definitely looks like there was issues with nuxt + bun for a minute...
18 replies
NNuxt
Created by Patricius on 6/13/2024 in #❓・help
Dockerized Nuxt3 with Bun Cannot find module "@vue/reactivity"
18 replies