@nuxtjs/prismic 5.3.1-canary.29138d8 → 5.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -6
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,13 +27,9 @@ Install the module to your Nuxt application with one command:
|
|
|
27
27
|
npx nuxi@latest module add prismic
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
The module automatically loads your repository name and `routes` from `prismic.config.json`, so for most projects
|
|
30
|
+
The module automatically loads your repository name and `routes` from `prismic.config.json`, so for most projects all you need to do is register the module (done by the `module add` command). If needed, you can still override those values and configure the Nuxt module further in `nuxt.config.ts` or Nuxt's `runtimeConfig`.
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
```bash
|
|
35
|
-
npx skills add --global --yes prismicio/skills
|
|
36
|
-
```
|
|
32
|
+
That's it! You can now use Prismic in your Nuxt app ✨
|
|
37
33
|
|
|
38
34
|
## Documentation
|
|
39
35
|
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -7,7 +7,7 @@ import { addDependency } from 'nypm';
|
|
|
7
7
|
import { readPackage } from 'pkg-types';
|
|
8
8
|
|
|
9
9
|
const name = "@nuxtjs/prismic";
|
|
10
|
-
const version = "5.3.1
|
|
10
|
+
const version = "5.3.1";
|
|
11
11
|
|
|
12
12
|
const logger = useLogger("nuxt:prismic");
|
|
13
13
|
const PRISMIC_CONFIG_FILENAME = "prismic.config.json";
|