├── .babelrc ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── README.md ├── api ├── config │ └── index.js └── index.js ├── assets ├── README.md ├── logo.png ├── logo.svg └── reset.css ├── components ├── README.md ├── categories.vue ├── postList.vue └── recentPosts.vue ├── layouts ├── README.md └── default.vue ├── middleware └── README.md ├── nuxt.config.js ├── package.json ├── pages ├── README.md ├── _slug │ └── index.vue ├── about │ └── index.vue ├── category │ └── _slug │ │ └── index.vue └── index.vue ├── plugins └── README.md ├── static ├── favicon.ico ├── icon.png ├── sw.js └── workbox-sw.prod.v1.0.1.js ├── store ├── README.md ├── actions.js ├── getters.js ├── index.js └── mutations.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["transform-object-rest-spread", "stage-2"] 3 | } -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/README.md -------------------------------------------------------------------------------- /api/config/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | baseUrl: "https://nuxt.craftedup.com/wp-json/wp/v2/" 3 | }; 4 | -------------------------------------------------------------------------------- /api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/api/index.js -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /assets/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/assets/reset.css -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/components/README.md -------------------------------------------------------------------------------- /components/categories.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/components/categories.vue -------------------------------------------------------------------------------- /components/postList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/components/postList.vue -------------------------------------------------------------------------------- /components/recentPosts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/components/recentPosts.vue -------------------------------------------------------------------------------- /layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/layouts/README.md -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/middleware/README.md -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/package.json -------------------------------------------------------------------------------- /pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/pages/README.md -------------------------------------------------------------------------------- /pages/_slug/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/pages/_slug/index.vue -------------------------------------------------------------------------------- /pages/about/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/pages/about/index.vue -------------------------------------------------------------------------------- /pages/category/_slug/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/pages/category/_slug/index.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/pages/index.vue -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/plugins/README.md -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/static/icon.png -------------------------------------------------------------------------------- /static/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/static/sw.js -------------------------------------------------------------------------------- /static/workbox-sw.prod.v1.0.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/static/workbox-sw.prod.v1.0.1.js -------------------------------------------------------------------------------- /store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/store/README.md -------------------------------------------------------------------------------- /store/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/store/actions.js -------------------------------------------------------------------------------- /store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/store/getters.js -------------------------------------------------------------------------------- /store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/store/index.js -------------------------------------------------------------------------------- /store/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/store/mutations.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhise/nuxt-wordpress-pwa/HEAD/yarn.lock --------------------------------------------------------------------------------