simple-content-site 3.1.0 → 3.1.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.
@@ -46,11 +46,6 @@ const headline = ref(findPageHeadline(navigation?.value, page.value?.path))
46
46
  watch(() => navigation?.value, () => {
47
47
  headline.value = findPageHeadline(navigation?.value, page.value?.path) || headline.value
48
48
  })
49
-
50
- // todo: make the landing OG component customizable.
51
- defineOgImageComponent('Landing', {
52
- headline: headline.value,
53
- })
54
49
  </script>
55
50
 
56
51
  <template>
package/nuxt.config.ts CHANGED
@@ -33,6 +33,7 @@ export default defineNuxtConfig({
33
33
  enabled: true,
34
34
  },
35
35
  content: {
36
+ experimental: { sqliteConnector: 'native' },
36
37
  build: {
37
38
  markdown: {
38
39
  highlight: {
@@ -48,10 +49,22 @@ export default defineNuxtConfig({
48
49
  },
49
50
  },
50
51
  },
52
+ build: {
53
+ transpile: ['simple-content-site'],
54
+ },
51
55
  // future: {
52
56
  // compatibilityVersion: 5,
53
57
  // },
54
58
  compatibilityDate: '2025-07-22',
59
+ vite: {
60
+ optimizeDeps: {
61
+ include: [
62
+ ],
63
+ },
64
+ resolve: {
65
+ dedupe: ['vue', '@vue/runtime-core', '@vue/runtime-dom', '@vue/reactivity', '@vue/shared'],
66
+ },
67
+ },
55
68
  hooks: {
56
69
  'nitro:config'(nitroConfig) {
57
70
  const nuxt = useNuxt()
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "simple-content-site",
3
3
  "description": "Nuxt layer for simple website with basic functions.",
4
- "version": "3.1.0",
4
+ "version": "3.1.1",
5
5
  "type": "module",
6
6
  "main": "./nuxt.config.ts",
7
7
  "repository": {
@@ -27,28 +27,28 @@
27
27
  "@iconify-json/vscode-icons": "^1.2.40",
28
28
  "@nuxt/content": "^3.11.0",
29
29
  "@nuxt/image": "^2.0.0",
30
- "@nuxt/kit": "^4.2.2",
31
- "@nuxt/ui": "^4.4.0",
30
+ "@nuxt/kit": "^4.4.2",
31
+ "@nuxt/ui": "^4.5.1",
32
32
  "@nuxtjs/i18n": "^10.2.1",
33
33
  "@nuxtjs/mdc": "^0.20.0",
34
- "@nuxtjs/robots": "^5.6.7",
35
- "@vueuse/core": "^14.1.0",
36
- "@nuxt/fonts": "^0.14.0",
34
+ "@nuxtjs/robots": "^6.0.6",
35
+ "@vueuse/core": "^14.2.1",
37
36
  "defu": "^6.1.4",
38
37
  "exsolve": "^1.0.8",
39
38
  "git-url-parse": "^16.1.0",
40
39
  "minimark": "^0.2.0",
41
40
  "motion-v": "^1.9.0",
42
- "nuxt-og-image": "^5.1.13",
41
+ "nuxt-og-image": "^6.2.5",
43
42
  "pkg-types": "^2.3.0",
44
43
  "scule": "^1.3.0",
45
44
  "tailwindcss": "^4.1.18",
46
45
  "ufo": "^1.6.3",
47
46
  "zod": "^4.3.5",
48
- "zod-to-json-schema": "^3.25.1"
47
+ "zod-to-json-schema": "^3.25.1",
48
+ "h3": "^1.15.10"
49
49
  },
50
50
  "peerDependencies": {
51
- "better-sqlite3": "12.x",
52
- "nuxt": "4.x"
51
+ "nuxt": "4.x",
52
+ "@vue/runtime-core": "3.5.27"
53
53
  }
54
54
  }