nandi95
nandi95
NNuxt
Created by nandi95 on 7/29/2023 in #❓・help
routing shows raw file
15 replies
NNuxt
Created by nandi95 on 7/29/2023 in #❓・help
routing shows raw file
found an existing one already
15 replies
NNuxt
Created by nandi95 on 7/29/2023 in #❓・help
routing shows raw file
sure thing
15 replies
NNuxt
Created by nandi95 on 7/29/2023 in #❓・help
routing shows raw file
@Anthony Fu This might be of concern to you? I think this viteInspect is a neat feature but is the above a desired behaviour?
15 replies
NNuxt
Created by nandi95 on 7/29/2023 in #❓・help
routing shows raw file
it's the viteInspect option in devtools
15 replies
NNuxt
Created by nandi95 on 7/29/2023 in #❓・help
routing shows raw file
this doesn't happen unless nuxt devtools are enabled
15 replies
NNuxt
Created by nandi95 on 7/29/2023 in #❓・help
routing shows raw file
very interesting
15 replies
NNuxt
Created by nandi95 on 7/29/2023 in #❓・help
routing shows raw file
oh
15 replies
NNuxt
Created by nandi95 on 7/29/2023 in #❓・help
routing shows raw file
I'll pinpoint the specific version soon maybe even find the commit
15 replies
NNuxt
Created by nandi95 on 7/29/2023 in #❓・help
routing shows raw file
huh, I went back to verions 3.3.3 and it works there but not in 3.4.3
15 replies
NNuxt
Created by nandi95 on 7/29/2023 in #❓・help
routing shows raw file
it does happen in the latest
15 replies
NNuxt
Created by nandi95 on 7/29/2023 in #❓・help
routing shows raw file
if this is intentional, what is the solution when I have both an app.vue and and /app route?
15 replies
NNuxt
Created by nandi95 on 7/28/2023 in #❓・help
is there a way to customise the fallback of the suspense?
2 replies
NNuxt
Created by nandi95 on 3/29/2023 in #❓・help
I get the error JSON.parse: unexpected character at line 1 column 1 of the JSON data
while working on a repro, I got it down to an issue with a dependency. (useFetch etc work) I'll look into the dependency. Thanks
3 replies
NNuxt
Created by nandi95 on 3/30/2023 in #❓・help
data fetching prefixed with localhost
it's the missing protocol 🤦
6 replies
NNuxt
Created by nandi95 on 3/30/2023 in #❓・help
data fetching prefixed with localhost
it seems the request seems to be going to: https://nuxtstarterec7q6b-aczb--3000.local-corp.webcontainer.io/www.thecocktaildb.com/api/json/v1/1/random.php
6 replies
NNuxt
Created by nandi95 on 3/30/2023 in #❓・help
data fetching prefixed with localhost
<script lang="ts" setup>
const { data } = useFetch('www.thecocktaildb.com/api/json/v1/1/random.php', { server: false });
console.log(data.value);
</script>
<script lang="ts" setup>
const { data } = useFetch('www.thecocktaildb.com/api/json/v1/1/random.php', { server: false });
console.log(data.value);
</script>
6 replies
NNuxt
Created by nandi95 on 3/30/2023 in #❓・help
data fetching prefixed with localhost
just stick this into the app.vue
6 replies