Attacler/Bart
Attacler/Bart
Explore posts from servers
RRailway
Created by Attacler/Bart on 10/15/2024 in #✋|help
Remove plan but keep account
Hi there, I want to cancel my account but i have to keep access to projects that im invited to. How can i do this?
14 replies
RRailway
Created by Attacler/Bart on 10/2/2024 in #✋|help
Filebrowser is not displaying any files...
Hi there, I have a volume with +- 160 MB on it and i want to download it. However if i try to attach it to the filebrowser template its not working. I tried to mount it both at /data and /storage and /data/storage.
16 replies
NNuxt
Created by Attacler/Bart on 9/16/2024 in #❓・help
Dont cache /api/**
Hi there, Im trying to cache all pages except the api routes. Does someone know how i can do this? My current routeRules:
{
"/api/**": {
swr: true,
},
"/**": {
cache: {
maxAge: 60 * 60 * 24,
},
},
}
{
"/api/**": {
swr: true,
},
"/**": {
cache: {
maxAge: 60 * 60 * 24,
},
},
}
I found this discussion: https://github.com/nuxt/nuxt/discussions/16048 but that does not solve it sadly.
3 replies
NNuxt
Created by Attacler/Bart on 8/28/2024 in #❓・help
How can i get the event within middleware?
Hi there, I need to know some of the headers (and some other details) from the event in middleware. However it seems like useEvent does not work. Does someone have an idea how i can make it work?
5 replies
RRailway
Created by Attacler/Bart on 6/26/2024 in #✋|help
Cannot connect to internal network
No description
14 replies
NNuxt
Created by Attacler/Bart on 4/9/2024 in #❓・help
Nuxt useRoute is not reactive
Hi there, Im trying to use a computed with useRouter inside a Pinia store. A snippet of my code:
const route = useRoute();

const currentOrganisationID = computed(() => {
route.redirectedFrom;
console.log({ route });
return route.params.orgID;
});
const route = useRoute();

const currentOrganisationID = computed(() => {
route.redirectedFrom;
console.log({ route });
return route.params.orgID;
});
Somehow it looks like the console.log is never triggered altho i am using the variable inside of my Vue code.
2 replies
RRailway
Created by Attacler/Bart on 3/15/2024 in #✋|help
Error while trying to restore DB dump
Hi there, I am trying to restore a DB backup but it always says the errors that are inside the attached printscreen. How to fix this?
51 replies
RRailway
Created by Attacler/Bart on 2/13/2024 in #✋|help
Dont send crash mails when sleeping
Hi there, Somehow i always receive mails about my service crashing when it wakes up from sleep. Any way to correct that?
20 replies
RRailway
Created by Attacler/Bart on 1/26/2024 in #✋|help
Backup does not seem to work
No description
23 replies
RRailway
Created by Attacler/Bart on 1/10/2024 in #✋|help
Move an instance + volume from dev -> prod
I (by accident) migrated a database into dev instead of production. Everything is already connected (altho a few secs downtime is no issue) Can i somehow move the DB instance + volume into production? Or do i have to recreate it?
3 replies
RRailway
Created by Attacler/Bart on 1/5/2024 in #✋|help
Sleep does not work
No description
23 replies
RRailway
Created by Attacler/Bart on 1/4/2024 in #✋|help
Container cannot connect to database
No description
18 replies
RRailway
Created by Attacler/Bart on 12/18/2023 in #✋|help
Cannot connect to DB
No description
6 replies
RRailway
Created by Attacler/Bart on 10/27/2023 in #✋|help
Postgis custom version
No description
33 replies
NNuxt
Created by Attacler/Bart on 5/11/2023 in #❓・help
WARN Duplicated imports "uuid", the one from "ProjectPath/server/utils/generate
I get this error alot for a project of mine. Basicly every export seems to be marked as duplicated imports. Does anyone got an idea about why this happends and how i can avoid it?
4 replies
NNuxt
Created by Attacler/Bart on 4/25/2023 in #❓・help
Github Codespace & Nuxt HMR not working
No description
2 replies
RRailway
Created by Attacler/Bart on 3/20/2023 in #✋|help
How to enable GZIP?
Hi there, Is it possible to enable GZIP on railway?
5 replies
NNuxt
Created by Attacler/Bart on 2/10/2023 in #❓・help
Middleware on the client side?
Is it possible to make the middleware run on the client side? I need it to check authentication towards another service.
10 replies
DDeno
Created by Attacler/Bart on 1/24/2023 in #help
How can i return a base64 as file on Deno Deploy?
Could someone give me an example for this?
9 replies
NNuxt
Created by Attacler/Bart on 12/28/2022 in #❓・help
Can i make components SSR only?
I saw the AstroJS framework where they only sent the JS code that actually needes to the client They allow for attributes for components like: - client:idle (only load when the client has loaded everything else) - client:visible (only load when the component is visual) Can this be done with Nuxt? Basicly to eliminate any JS thats not required for the client side. Example: the footer has some components inside of it but after rendering on the server, it wont the JS anymore
4 replies