diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-08-24 00:34:53 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-10-04 19:39:27 +0200 |
commit | 1be1b15a57eb74d3c8d56683e6a221fd4712915c (patch) | |
tree | e6a6b137c4af59f60ddf1baf993aed48414741ec /.gitignore | |
parent | 1371a97acfb9263aaca7fa8642e95ba68534fa19 (diff) |
Replace local web server setup for web editor with a Python-based solution
This makes it easier to set up, as you always have Python installed
when building Godot. On the other hand, you don't always have Node.js
+ npm installed (and you may not want to spend time running `npm install`).
Co-authored-by: Fabio Alessandrelli <fabio.alessandrelli@gmail.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index 539003ca6b..1a83e4707e 100644 --- a/.gitignore +++ b/.gitignore @@ -82,9 +82,9 @@ platform/android/java/*/libs/ # iOS *.dSYM -# Javascript +# Web platform *.bc -platform/javascript/node_modules/ +platform/web/node_modules/ # Misc *.debug |