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
Default to `false` - Enables Key-Value to store JSON data accessible globally.
101
96
::
97
+
98
+
::field{name="remote"type="boolean|string"}
99
+
Default to `false` - Allows working with remote storage (database, kv, blob) from your deployed project. :br
100
+
[Read more about remote storage for usage](/docs/getting-started/remote-storage).
101
+
::
102
+
103
+
::field{name="dir"type="string"}
104
+
Default to `'.data/hub'` - The directory used for storage (D1, KV, R2, etc.) in development mode.
105
+
::
106
+
102
107
::
103
108
104
109
::tip{icon="i-ph-rocket-launch-duotone"}
105
110
You're all set! Now, let's dive into connecting to your Cloudflare account and [deploying it on the Edge](/docs/getting-started/deploy).
106
111
::
112
+
113
+
## Nightly Builds
114
+
115
+
You can also use the latest features and bug fixes (commited on the `main` branch) by installing the [nightly tag](https://www.npmjs.com/package/@nuxthub/core?activeTab=versions):
116
+
117
+
```diff [package.json]
118
+
{
119
+
"Dependencies": {
120
+
- "@nuxthub/core": "^0.5.0"
121
+
+ "@nuxthub/core": "npm:@nuxthub/core@nightly"
122
+
}
123
+
}
124
+
```
125
+
126
+
Then run `npm install`, `pnpm install`, `yarn install` or `bun install` to update the dependency.
0 commit comments