@nuxtify/core 0.2.1 → 0.3.0

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.d.mts CHANGED
@@ -78,7 +78,7 @@ interface ModuleOptions {
78
78
  */
79
79
  policies?: PoliciesOptions;
80
80
  /**
81
- * Announcement banner options
81
+ * Announcement options
82
82
  */
83
83
  announcement?: {
84
84
  show?: boolean;
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxtify/core",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
4
4
  "configKey": "nuxtifyCore",
5
5
  "compatibility": {
6
6
  "nuxt": ">=4.0.0"
package/dist/module.mjs CHANGED
@@ -2,7 +2,7 @@ import { defineNuxtModule, createResolver, useLogger, addComponentsDir, addImpor
2
2
  import { defu } from 'defu';
3
3
 
4
4
  const name = "@nuxtify/core";
5
- const version = "0.2.1";
5
+ const version = "0.3.0";
6
6
 
7
7
  const module$1 = defineNuxtModule().with({
8
8
  meta: {
@@ -1,4 +1,5 @@
1
- import { useAppConfig, useHead } from "#imports";
1
+ import { useHead } from "#app";
2
+ import { useAppConfig } from "#imports";
2
3
  export const useNuxtifyConfig = () => useAppConfig().nuxtify;
3
4
  export const useNuxtifySiteTitle = ({
4
5
  separator = "|",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxtify/core",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
4
4
  "description": "Nuxtify core module powered by Nuxt and Vuetify.",
5
5
  "homepage": "https://nuxtify.dev",
6
6
  "author": "Nuxtify.dev <hello@nuxtify.dev>",