-
Hey @kinngh , I submitted my app to Shopify and they came back saying they couldn't go through the OAuth process. I realized it's because I deployed the app in dev mode, so they couldn't install it directly in Parner's dashboard. Just redeployed the server with with npm start, as to the client portion, do I use the dev:client or just build ? thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Ok I'm a little surprised that this is even a question but I'm just gonna assume this is your first time. To deploy, first |
Beta Was this translation helpful? Give feedback.
Ok I'm a little surprised that this is even a question but I'm just gonna assume this is your first time. To deploy, first
npm run build
and thennpm run start
. ABSOLUTELY NOTHING RUNS IN DEV MODE. Aight?