@storyblok/nuxt 5.6.1 → 5.6.3
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/dist/module.cjs +5 -0
- package/dist/module.d.ts +13 -0
- package/dist/module.json +5 -0
- package/{src/module.ts → dist/module.mjs} +19 -47
- package/dist/runtime/composables/useAsyncStoryblok.d.ts +2 -0
- package/{src/runtime/composables/useAsyncStoryblok.ts → dist/runtime/composables/useAsyncStoryblok.mjs} +6 -14
- package/dist/runtime/plugin.d.ts +2 -0
- package/{src/runtime/plugin.ts → dist/runtime/plugin.mjs} +0 -1
- package/dist/types.d.ts +15 -0
- package/package.json +4 -1
- package/.editorconfig +0 -12
- package/.eslintignore +0 -3
- package/.eslintrc +0 -7
- package/.github/ISSUE_TEMPLATE/config.yml +0 -1
- package/.github/ISSUE_TEMPLATE/issue.bug.yml +0 -68
- package/.github/ISSUE_TEMPLATE/issue.fr.yml +0 -40
- package/.github/dependabot.yml +0 -11
- package/.github/workflows/dependabot-automerge.yml +0 -28
- package/.github/workflows/release.yml +0 -30
- package/.husky/commit-msg +0 -6
- package/.husky/pre-commit +0 -4
- package/.nuxtrc +0 -1
- package/.prettierignore +0 -1
- package/cypress/.eslintrc +0 -3
- package/cypress/e2e/index.cy.ts +0 -34
- package/cypress/fixtures/stories.json +0 -7
- package/cypress/support/commands.ts +0 -25
- package/cypress/support/e2e.ts +0 -20
- package/cypress.config.ts +0 -11
- package/playground/README.md +0 -63
- package/playground/app.vue +0 -3
- package/playground/error.vue +0 -22
- package/playground/nuxt.config.ts +0 -18
- package/playground/package-lock.json +0 -11660
- package/playground/package.json +0 -17
- package/playground/pages/[...slug].vue +0 -17
- package/playground/pages/index.vue +0 -21
- package/playground/public/favicon.ico +0 -0
- package/playground/server/tsconfig.json +0 -3
- package/playground/storyblok/sub/Feature.vue +0 -16
- package/playground/storyblok/sub/Grid.vue +0 -19
- package/playground/storyblok/sub/Page.vue +0 -19
- package/playground/storyblok/sub/Teaser.vue +0 -19
- package/playground/tsconfig.json +0 -4
- package/playground-e2e/nuxt.config.ts +0 -24
- package/playground-e2e/package.json +0 -15
- package/playground-e2e/pages/[...slug].vue +0 -20
- package/playground-e2e/pages/index.vue +0 -19
- package/playground-e2e/pages/test.vue +0 -7
- package/playground-e2e/pages/vcalong.vue +0 -17
- package/playground-e2e/plugins/storyblok.js +0 -21
- package/playground-e2e/storyblok/sub/Feature.vue +0 -14
- package/playground-e2e/storyblok/sub/Grid.vue +0 -19
- package/playground-e2e/storyblok/sub/Page.vue +0 -19
- package/playground-e2e/storyblok/sub/Teaser.vue +0 -19
- package/playground-e2e/tsconfig.json +0 -11
- package/tsconfig.json +0 -3
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
2
|
-
export default defineNuxtConfig({
|
|
3
|
-
modules: ['../src/module'],
|
|
4
|
-
storyblok: {
|
|
5
|
-
accessToken: "OurklwV5XsDJTIE1NJaD2wtt",
|
|
6
|
-
apiOptions: {
|
|
7
|
-
region: ""
|
|
8
|
-
},
|
|
9
|
-
devtools: true,
|
|
10
|
-
// enableSudoMode: true /* (or legacy) usePlugin: false */
|
|
11
|
-
},
|
|
12
|
-
app: {
|
|
13
|
-
head: {
|
|
14
|
-
script: [{ src: "https://cdn.tailwindcss.com" }]
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
// devtools: { enabled: true },
|
|
18
|
-
})
|