add a space to look the same

This commit is contained in:
haoeliu@foxmail.com 2023-06-15 20:38:58 +08:00
parent 192336d2b0
commit e1c628004f

View File

@ -16,7 +16,7 @@ public class ImportNode {
public String getPath() {
if (path.startsWith("@"))
return path.replaceAll("@", "/.depyjs/");
if(!path.startsWith("/"))
if (!path.startsWith("/"))
return "/" + path;
return path;
}