I tried the code below to solve the Ads issues but I have a parsing error “undeterminated template”
Let adstxt = '# Ads.txt is the main issue in red, am I missing something or this code does not work anymore? Help - Thanks
import { ok, notFound, serverError } from ‘wix-http-functions’ ;
let adstxt = ** `#** Ads.txt
google.com, pub- 0000000000000000 , DIRECT, f08c47fec0942fa0
export function get_Adstxt(request) {
let options = {
“headers” : {
“Content-Type” : “text/plain”
},
“body” : adstxt
};
return ok(options);
}