jquery.js source code is not being recognised by browser using my page.html served by Google App Engine as a http:some_request to the SDK, BUT when I load the exact same page.html into the browser directly from my local hard drive as jquery.js all works OK, it is recognized, so I know my path is OK….
In the header of my page.html I have the following:
<script src="/static/jquery.js" type="text/javascript"></script>
From my app.yaml:
- url: /static
static_dir: static
expiration: 1d
The key is that all files you want to be recognized by the client’s browser such
jquery.jsshould be inside a directory that is inside the static directory.So the portion of the app.yaml file that relates to this should appear as follows:
what is key line that I now changed to make it work is where jquery stuff is inside static directory: static_dir: static/jquery
so now in the header section of the page.html I have this working so I can work with the SDK off-line: