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 active development. While it is already 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).
16
17
17
18
### Table of Contents
18
19
19
20
- ♾️ [Why Nuxtify?](#why-nuxtify)
21
+
- 🧩 [Nuxtify Modules](#modules)
20
22
- ✨ [Features](#features)
21
23
- 🚀 [Quick Start](#quick-start)
22
24
- 🔧 [Configuration](#configuration)
@@ -47,9 +49,25 @@ This means you can:
47
49
48
50
In short, Nuxtify helps you build faster, iterate smarter, and maintain consistency – without sacrificing control or creativity.
Provides single and multi-page website building blocks so you can _ship weirdly fast_.
64
+
65
+
- Ready to use page components, page templates, and email subscribe form
66
+
- (coming soon) Robots, sitemaps, schema.org, social share images, broken links, and more powered by [Nuxt SEO](https://nuxtseo.com/)
67
+
50
68
## <aname="features">✨ Features</a>
51
69
52
-
Nuxtify builds on the amazing features of [Vue](https://vuejs.org/guide/introduction), [Nuxt](https://nuxt.com/docs/getting-started/introduction), and [Vuetify](https://vuetifyjs.com/en/introduction/why-vuetify/).
70
+
Nuxtify Pages builds on the functionality in [Nuxtify Core](https://github.com/nuxtify-dev/core).
53
71
54
72
### 💡 Intuitive UI & UX
55
73
@@ -102,12 +120,10 @@ Add the `@nuxtify/pages` module to `nuxt.config.ts` and configure it:
102
120
// nuxt.config.ts
103
121
104
122
exportdefaultdefineNuxtConfig({
105
-
modules: [
106
-
'@nuxtify/pages'
107
-
],
123
+
modules: ["@nuxtify/pages"],
108
124
nuxtifyPages: {
109
125
/* module specific options */
110
-
}
126
+
},
111
127
});
112
128
```
113
129
@@ -138,11 +154,13 @@ If you need to override a [composable](https://nuxt.com/docs/guide/directory-str
138
154
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.
139
155
140
156
**Minor and patch versions**
157
+
141
158
```bash
142
159
npm update @nuxtify/pages --save
143
160
```
144
161
145
162
**Major versions**
163
+
146
164
```bash
147
165
npm install @nuxtify/pages@latest --save
148
166
```
@@ -164,23 +182,23 @@ Here are a few ways you can get involved:
164
182
```bash
165
183
# Install dependencies
166
184
npm install
167
-
185
+
168
186
# Generate type stubs
169
187
npm run dev:prepare
170
-
188
+
171
189
# Develop with the playground
172
190
npm run dev
173
-
191
+
174
192
# Build the playground
175
193
npm run dev:build
176
-
194
+
177
195
# Run ESLint
178
196
npm run lint
179
-
197
+
180
198
# Run Vitest
181
199
npm run test
182
200
npm run test:watch
183
-
```
201
+
```
184
202
185
203
Learn about [authoring Nuxt modules](https://nuxt.com/docs/guide/going-further/modules).
0 commit comments