diff options
author | Rémy Raes <contact@remyraes.com> | 2022-10-04 15:09:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 15:09:20 +0200 |
commit | a05650191eff7d3a02239acef02941f3780e8404 (patch) | |
tree | a6e1823265417faedfbfbeece6c9fcba47e42724 /src-tauri/tauri.conf.json | |
parent | c504dede70f146d67caf76a00e4f7b089566c3e1 (diff) | |
parent | a549c4e87b4d9dada8cd63568833cb8ff77ea7d5 (diff) | |
download | FlightCore-a05650191eff7d3a02239acef02941f3780e8404.tar.gz FlightCore-a05650191eff7d3a02239acef02941f3780e8404.zip |
Merge pull request #10 from GeckoEidechse/refactor/change-dist-dir
Change dist dir path
Diffstat (limited to 'src-tauri/tauri.conf.json')
-rw-r--r-- | src-tauri/tauri.conf.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 26946644..8a57c93e 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,10 +1,10 @@ { "$schema": "../node_modules/@tauri-apps/cli/schema.json", "build": { - "beforeBuildCommand": "cd src-vue && npm run build && cp dist/* ../dist -r", + "beforeBuildCommand": "cd src-vue && npm run build", "beforeDevCommand": "cd src-vue && npm run dev", "devPath": "http://localhost:5173/", - "distDir": "../dist" + "distDir": "../src-vue/dist" }, "package": { "productName": "flightcore", |