• So this is my current understanding

    app.js is the way the websites served. It serves the content inside EspruinoDocs/html. This file includes all the files that got generated from the markdown modules.

    Now the the javascript modules are in. So they they never get served up from the server.

    [#buildmodules](https://forum.espruino.com/search/?q=%23buildmodules).sh
    DIR=`pwd`
    WEBSITE="$HOME/workspace/espruinowebsite"
    MODULEDIR=$WEBSITE/www/modules
    

    So i changed the location

    DIR=`pwd`
    WEBSITE="$DIR/html"
    MODULEDIR=$WEBSITE/modules
    

    and now the ide will grab the files it just doesn't use it?

    So i can see from the server it serves the files.
    //terminal from app start
    returning: /modules/BH1792.min.js
    returning: /modules/BH1792.js

    but from the ide perspective i still get.
    "Module BH1792 not found"

About

Avatar for user156811 @user156811 started