Including DevTools in Runtime Layer Configuration
Is it OK if I include the devtools in the runtime defined as a layer like this?
export const StaticServicesLayer = Layer.mergeAll(
xxxxx.Default,
).pipe(
Layer.provideMerge(InfrastructureServicesLayer),
Layer.provide(DevToolsLayer),
);