Describe the solution
Would it be possible to stub out bindings that don't/can't work locally(i.e. Analytics Engine)?
At the moment, local dev requires me to have an
if (env.AE) {
env.AE.writeDataPoint({
blobs: [...],
doubles: [...],
indexes: [...],
});
} else {
console.log("In dev, skipping logs");
}
This could be as simple as a function that just takes the same parameters as the actual AE binding, but then just discards them.