You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Cloudflare Account credentials. Can be provided upfront or as a function which will be called only when required. */
147
147
auth?: AsyncHook<CfAccount,[Pick<Config,"account_id">]>;// provide config.account_id as a hook param
148
-
/** Whether local storage (KV, Durable Objects, R2, D1, etc) is persisted. You can also specify the directory to persist data to. */
149
-
persist?: string;
148
+
/** Whether local storage (KV, Durable Objects, R2, D1, etc) is persisted. You can also specify the directory to persist data to. Set to `false` to disable persistence. */
149
+
persist?: string|false;
150
150
/** Controls which logs are logged 🤙. */
151
151
logLevel?: LogLevel;
152
152
/** Whether the worker server restarts upon source/config file changes. */
/** A worker's directory. Usually where the Wrangler configuration file is located */
208
208
projectRoot: string;
@@ -221,7 +221,7 @@ export type StartDevWorkerOptions = Omit<
221
221
site?: Config["site"];
222
222
};
223
223
dev: StartDevWorkerInput["dev"]&{
224
-
persist: string;
224
+
persist: string|false;
225
225
auth?: AsyncHook<CfAccount>;// redefine without config.account_id hook param (can only be provided by ConfigController with access to the Wrangler configuration file, not by other controllers eg RemoteRuntimeContoller)
0 commit comments