Skip to main content
Filter by
Sorted by
Tagged with
-2 votes
1 answer
44 views

I am building a Shopify App using Remix, Shopify uses flatRoutes and my folder structure is like this /app/routes/app.discounts._index/route.jsx /app/routes/app.discounts.$functionId.$id/route.jsx /...
Charles Marsh's user avatar
-1 votes
1 answer
211 views

I'm building a Shopify app using the official @shopify/shopify-app-remix framework with PrismaSessionStorage. In my App Proxy route, I try to send an authenticated Admin GraphQL request using an ...
Vincent Gates's user avatar
68 votes
3 answers
54k views

I have an app with Remix and Prisma. On the server side console I get this error: status: 404, statusText: 'Not Found', internal: true, data: 'Error: No route matches URL "/.well- known/...
Chen Peleg's user avatar
  • 3,190
-1 votes
1 answer
44 views

Tl, Dr; I want to toggle and submit <input type="checkbox" /> without <button type="submit"> In ReactJS with enabled JavaScript, I can toggle and submit form with ...
MPK's user avatar
  • 69
0 votes
1 answer
52 views

I have a table where the last column is a button that triggers an action which in turn queries the DB, returns a result and downloads the result as a csv. In order for the data to be processed and the ...
sinanspd's user avatar
  • 2,744
0 votes
1 answer
135 views

I've tried importing the shopify resource picker from app bridge react and said it didnt exist so I am now trying to import it from app bridge actions library with only slightly more success. It is ...
noahacla's user avatar
0 votes
1 answer
45 views

I'm building a country selector in my Remix application. When I switch regions from US to SG or vice versa, however, the cart doesn't seem to update the buyer Identity with the change in country (the ...
matrixvivi's user avatar
1 vote
1 answer
92 views

I started a Remix tutorial from this link Basically just ran npx create-remix@latest And followed the instructions. Now in my package.json I see: "scripts": { "build": "...
Chen Peleg's user avatar
  • 3,190
1 vote
1 answer
236 views

In my up to date shopify hydrogen/remix app, I am trying to import the supabase-js package into my server.ts or specific route. When I initialize the createClient function, then run the "shopify ...
jip101's user avatar
  • 25
0 votes
0 answers
71 views

I wanted to try Remix app and Prisma with PostreSQL. I have developed the project and wanted to publish. I have followed the docs and send my project to Github. Then in Vercel I followed the publish ...
Orhan Özkerçin's user avatar
-3 votes
1 answer
267 views

I have created a user authenticator when signing up/logging in, and all works perfectly on localhost but I run into a TypeError on my Vercel deployment. This happens when I input invalid data in the ...
nKc's user avatar
  • 329
0 votes
0 answers
114 views

I'm working on a project that we're using react-i18next remix-spa for localization, and I want to organize my translation files in the following folder structure: /locales ├── /pages │ ├── /...
Yahia's user avatar
  • 1
0 votes
0 answers
151 views

I'm trying to deploy my Shopify app built with Remix.run on DigitalOcean, but I'm running into issues during deployment. Here's what I'm using: App Framework: Remix.run Backend: Shopify Admin API ...
Ronak Panchal's user avatar
-1 votes
1 answer
53 views

I want to use MDX for my project, but as I am getting my data (in markdown) via API, I can't just import it, I have to parse it in my app. For this, I've made a function that'll take the raw markdown ...
Tomek Buszewski's user avatar
0 votes
1 answer
94 views

Problem I cannot modify the style="--navbar-height: 4rem;" attribute on my NextUI Navbar component in my Remix app, which is breaking my setup. Although this is my first encounter with this, ...
Nick's user avatar
  • 526
0 votes
0 answers
66 views

I am using actions to get some form data in my component. However, this data from useActionData is not getting persisted in the component when I set a new searchParams using the setSearchParams ...
user28455040's user avatar
5 votes
3 answers
12k views

I'm using Remix with a modern npx create-remix@latest (cloudflare) template. It uses React router under the hood (Remix does), but I don't explicitly use React router anywhere in my code. Now I get ...
Sventies's user avatar
  • 2,826
2 votes
0 answers
389 views

I am trying to create a Proof of Concept of a federated app, that is a microfrontend based app, where: the host is a Remix app, which federation is configured using @module-federation/vite the remote ...
Gabriele Buffolino's user avatar
0 votes
0 answers
20 views

I am working on a project with Remix, Firebase and Chakra, and I am trying to fix an issue where my project is briefly flashing unstyled HTML (FOUC) when navigating pages. I think the issue arises ...
Alfie's user avatar
  • 43
2 votes
1 answer
908 views

I am trying to implement oAuth (Github in this case) in my React Router V7 app using Supabase. This is my signup action: export const signupWithOAuth = async ({ request, provider, }: { provider: ...
Santi's user avatar
  • 559
1 vote
2 answers
631 views

I'm working on a Remix application and trying to implement data caching using React Query's QueryClient. I want to ensure that both the server and client share the same instance of QueryClient to ...
Suhasi Patel's user avatar
0 votes
1 answer
94 views

It looks like vitejs cannot handle some oslo dependencies, it gives me this error: ✘ [ERROR] No loader is configured for ".node" files: node_modules/@node-rs/argon2-darwin-arm64/argon2....
Ender Bonnet's user avatar
0 votes
3 answers
768 views

I'm developing a Shopify app using Remix, and I want to redirect users to the pricing plan page I've set up for my app in the Shopify admin. Here's the plan page link: https://admin.shopify.com/store/{...
Ronak Panchal's user avatar
0 votes
1 answer
178 views

I have follow the guide from remix-run but fail to generate a download file. I have checked guide from both stackoverflow : Remix: file download How to return a plain text or css file from remix route?...
someoneuseless's user avatar
0 votes
1 answer
596 views

My use case is a command bar for a chat app. A single command might need to call several actions. A pseudo code for what I am doing today is something like this... const fetcher = useFetcher(); ...
Frank Fiegel's user avatar

1
2 3 4 5
12