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
Copy file name to clipboardExpand all lines: README.md
+16-4
Original file line number
Diff line number
Diff line change
@@ -16,9 +16,9 @@
16
16
17
17
---
18
18
19
-
<palign="center">An opinionated starter project for Nuxt, Vuetify, and Netlify CMS.
19
+
<palign="center">A fully configured PWA for Nuxtand Netlify CMS application development.
20
20
21
-
Quickly bootstrap a blog, CMS, or static site using the power of Nuxt and the headless CMS, Netlify CMS. One click Netlify deployment. Optimized for performance.
21
+
Quickly bootstrap a blog, CMS, or static site using the power of Nuxt and the headless CMS, Netlify CMS. Development amplified using the Vuetify UI library. One click Netlify deployment. Optimized for performance. Production ready.
22
22
<br>
23
23
24
24
</p>
@@ -31,7 +31,7 @@ Quickly bootstrap a blog, CMS, or static site using the power of Nuxt and the he
31
31
32
32
## About <aname = "about"></a>
33
33
34
-
This starter project was designed to bootstrap the development of a modern, headless CMS blog or static website. Using the power of Nuxt, you get a Vue application that is pre-configured to maximizing performance and SEO opportunities out of the box.
34
+
This starter project was designed to bootstrap the development of a modern, headless CMS blog or static website. Using the power of Nuxt, you get a PWA that is pre-configured to maximize performance and SEO opportunities out of the box.
35
35
36
36
Vuetify is used for the UI library and this project features responsive fonts, theme caching, a global breakpoint fix and much more.
37
37
@@ -100,7 +100,19 @@ yarn start
100
100
yarn generate
101
101
```
102
102
103
-
> This project was bootstrapped with `create-nuxt-app`. There are more detailed explanations of how everything works in the [Nuxt.js docs](https://nuxtjs.org).
103
+
## Docker
104
+
105
+
There is basic docker support for those who prefer to develop this way. The full usage docs are in the Dockerfile.
106
+
107
+
```bash
108
+
# Build command
109
+
docker build -t nuxt:nginx .
110
+
111
+
# Serve command
112
+
docker run --name basic_nuxt --rm -d -p 3333:80 nuxt:nginx
0 commit comments