I deployed my application in GAE Flexible Environment PHP 8.2 as per Google document.My deployment Finished Successfully, In my Application I included Jquery(https://code.jquery.com/jquery-3.6.4.min.js), CSS, Images, That and all not affected Using Php 8.2(Flexible Environment).
My App.yaml
runtime: php env: flex
runtime_config:
operating_system: "ubuntu22" document_root: .
My index.php
` <!doctype html>
$(document).ready(function(){
alert('inside');
})
Welcome
`
Output Php 8.2(image breaking): document ready not working,CSS not affect,image breaking
My expected output is(This one php 7.2 GAE(Flexible Environment) with image and CSS
I need help to resolve this problem.