You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The create-tauri-app command will ask what your dev command is (default is npm run dev).
Adding a command there will include it "beforeDevCommnad" in tauri.conf.json, like this:
"beforeDevCommand": "npm run dev",
I had to remove this command to get it to work. Then I would just do npm run tauri dev, which waits for localhost:3000 to start up, at which point in emacs I would run cider with M-x cider-jack-in-cljs, then select shadow, and then the :app build, and then it works.
I think it would be useful to add a note somewhere in the readme for noobs like me.
The text was updated successfully, but these errors were encountered:
Newbie note:
The
create-tauri-app
command will ask what your dev command is (default isnpm run dev
).Adding a command there will include it "beforeDevCommnad" in
tauri.conf.json
, like this:I had to remove this command to get it to work. Then I would just do
npm run tauri dev
, which waits forlocalhost:3000
to start up, at which point in emacs I would run cider withM-x cider-jack-in-cljs
, then selectshadow
, and then the:app
build, and then it works.I think it would be useful to add a note somewhere in the readme for noobs like me.
The text was updated successfully, but these errors were encountered: