@@ -1,6 +1,6 @@
{
"name": "tauri",
- "version": "0.1.1",
+ "version": "0.1.2",
"description": "Multi-binding collection of libraries and templates for building Tauri apps",
"bin": {
"tauri": "./bin/tauri.js"
@@ -42,7 +42,7 @@ class Runner {
this.devPath = devPath
- const args = ['--path', path.resolve(appDir, devPath)]
+ const args = ['--path', devPath.startsWith('http') ? devPath : path.resolve(appDir, devPath)]
const features = ['dev']
const startDevTauri = () => {