You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> This module is under heavy development. While it is actively used to power a [handful of sites](https://nuxtify.dev/showcase) in production, expect things to change frequently. I will do my best to call out breaking changes in the [changelog](https://github.com/nuxtify-dev/pages/blob/main/CHANGELOG.md).
19
+
16
20
### Table of Contents
17
21
18
22
- ♾️ [Why Nuxtify?](#why-nuxtify)
@@ -26,7 +30,7 @@
26
30
27
31
## <aname="why-nuxtify">♾️ Why Nuxtify?</a>
28
32
29
-
Nuxtify is a collection of [Nuxt modules](https://nuxt.com/docs/guide/concepts/modules) that will help you stay organized, maintain focus, and _ship weirdly fast_.
33
+
Nuxtify is a collection of [Nuxt modules](https://nuxt.com/docs/guide/concepts/modules) that help you stay organized, maintain focus, and _ship weirdly fast_.
30
34
31
35
It's built on a loosely opinionated stack that eliminates decision fatigue and ensures consistency across projects. This extensible approach gives you incredible control over your site's structure and style.
32
36
@@ -52,7 +56,7 @@ Nuxtify builds on the amazing features of [Vue](https://vuejs.org/guide/introduc
52
56
53
57
### 💡 Intuitive UI & UX
54
58
55
-
- Ready to use components, page templates, sections, and layouts so you can _ship weirdly fast_
59
+
- Ready to use components, page templates, and layouts so you can _ship weirdly fast_
56
60
- Easily override any component with [Vuetify global defaults](https://vuetifyjs.com/en/features/global-configuration/)
57
61
- Icons powered by [Material Design Icons](https://pictogrammers.com/library/mdi/) via [Vuetify icon fonts](https://vuetifyjs.com/en/features/icon-fonts/)
58
62
- Fully responsive and adapts to all modern browsers and devices
@@ -71,8 +75,8 @@ Nuxtify builds on the amazing features of [Vue](https://vuejs.org/guide/introduc
71
75
### 🤖 Smart SEO, Security, & Performance
72
76
73
77
- Fully tree shakeable for small bundle sizes
74
-
- Robots, sitemaps, schema.org, social share images, broken links, and more powered by [Nuxt SEO](https://nuxtseo.com/)
75
78
- Optimized caching and rendering strategies for each page with [hybrid rendering](https://nuxt.com/docs/guide/concepts/rendering#hybrid-rendering)
79
+
- (coming soon) Robots, sitemaps, schema.org, social share images, broken links, and more powered by [Nuxt SEO](https://nuxtseo.com/)
76
80
- (coming soon) Fast, responsive, optimized images for [20+ image providers](https://image.nuxt.com/get-started/providers) powered by [Nuxt Image](https://image.nuxt.com/)
77
81
- (coming soon) Load third-party scripts with better performance, privacy, security powered by [Nuxt Scripts](https://scripts.nuxt.com/)
78
82
- (coming soon) Optimal security patterns and principles powered by [Nuxt Security](https://nuxt.com/modules/security)
@@ -126,15 +130,15 @@ To see the full config, check out the [types](https://github.com/nuxtify-dev/pag
126
130
127
131
Nuxtify comes pre-configured with sensible defaults. Both for how the module functions and for the corresponding Nuxt [directory](https://nuxt.com/docs/guide/directory-structure).
128
132
129
-
If you need to override a [component](https://nuxt.com/docs/guide/directory-structure/components), [page](https://nuxt.com/docs/guide/directory-structure/pages), or [layout](https://nuxt.com/docs/guide/directory-structure/layouts), create the a file of the same name in your project (in the appropriate directory).
133
+
If you need to override a [component](https://nuxt.com/docs/guide/directory-structure/components), [page](https://nuxt.com/docs/guide/directory-structure/pages), or [layout](https://nuxt.com/docs/guide/directory-structure/layouts), create the a file with the same name in your project (in the appropriate directory).
130
134
131
-
If you need to override a [composable](https://nuxt.com/docs/guide/directory-structure/composables) or [utils](https://nuxt.com/docs/guide/directory-structure/utils) utility function, create a function of the same name in your project (in the appropriate directory).
135
+
If you need to override a [composable](https://nuxt.com/docs/guide/directory-structure/composables) or [utils](https://nuxt.com/docs/guide/directory-structure/utils) utility function, create a function with the same name in your project (in the appropriate directory).
132
136
133
137
## <aname="updates">✅ Updates</a>
134
138
135
139
[✨ Release Notes](/CHANGELOG.md)
136
140
137
-
It's easy to stay up to date with the latest version of Nuxtify. Just update to the latest package from your favorite package manager.
141
+
It's easy to stay up to date with the latest version of Nuxtify. Just update to the latest package using your favorite package manager.
138
142
139
143
**Minor and patch versions**
140
144
```bash
@@ -158,10 +162,9 @@ Here are a few ways you can get involved:
158
162
159
163
## <aname="local-development">🏠 Local Development</a>
160
164
161
-
<details>
162
-
<summary>CLI commands</summary>
163
-
164
-
```bash
165
+
### CLI commands
166
+
167
+
```bash
165
168
# Install dependencies
166
169
npm install
167
170
@@ -180,13 +183,8 @@ Here are a few ways you can get involved:
180
183
# Run Vitest
181
184
npm run test
182
185
npm run test:watch
183
-
184
-
# Release new version
185
-
npm run release
186
186
```
187
187
188
-
</details>
189
-
190
188
Learn about [authoring Nuxt modules](https://nuxt.com/docs/guide/going-further/modules).
0 commit comments