We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
nativeSqlite
1 parent ba721a8 commit 96a9c4aCopy full SHA for 96a9c4a
docs/content/docs/1.getting-started/3.configuration.md
@@ -489,3 +489,25 @@ preview: {
489
api: 'https://api.nuxt.studio',
490
}
491
```
492
+
493
+## `experimental`
494
495
+Experimental features that are not yet stable.
496
497
+### `experimental.nativeSqlite`
498
499
+As of Node.js v22.5.0, the `node:sqlite` module is available natively in Node.js.
500
+This allows Nuxt Content to use SQLite as a database without the need for an external package.
501
502
+```ts [nuxt.config.ts]
503
+export default defineNuxtConfig({
504
+ content: {
505
+ experimental: { nativeSqlite: true },
506
+ },
507
+});
508
+```
509
510
+::prose-note
511
+This feature is only available in Node.js v22.5.0 and above. Enabling this feature in older version will not do anything.
512
+::
513
0 commit comments