#Run tauri without a local frontend at all

9 messages · Page 1 of 1 (latest)

shadow echo
#

Hi, I'm trying to run tauri as a normal application, without any frontend. I'm having issues getting tauri to successfully build the context based on this.

#

I'd prefer to keep the folder structure instead of using a dummy node app + the tauri cli at all if possible

icy jetty
#

Well... do you have a build script, like the error says?

#

a build.rs

shadow echo
#

no, it's being confused because the macro doesn't really know what to do for this scenario

jovial fjord
#

You'll need to put this in src/build.rs

fn main() {
  tauri_build::build()
}
shadow echo
#

Doesn't seem to do anything

jovial fjord
#

oh wait put it in /build.rs instead

shadow echo
#

ah ty