├── README.md ├── meta.js └── template ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── README.md ├── assets ├── css │ └── main.css └── img │ └── logo.png ├── backpack.config.js ├── components └── Footer.vue ├── layouts ├── default.vue └── error.vue ├── nuxt.config.js ├── package.json ├── pages ├── about.vue └── index.vue ├── server └── index.js └── static └── favicon.ico /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-community/koa-template/HEAD/README.md -------------------------------------------------------------------------------- /meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-community/koa-template/HEAD/meta.js -------------------------------------------------------------------------------- /template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-community/koa-template/HEAD/template/.editorconfig -------------------------------------------------------------------------------- /template/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-community/koa-template/HEAD/template/.eslintrc.js -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-community/koa-template/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-community/koa-template/HEAD/template/README.md -------------------------------------------------------------------------------- /template/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-community/koa-template/HEAD/template/assets/css/main.css -------------------------------------------------------------------------------- /template/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-community/koa-template/HEAD/template/assets/img/logo.png -------------------------------------------------------------------------------- /template/backpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-community/koa-template/HEAD/template/backpack.config.js -------------------------------------------------------------------------------- /template/components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-community/koa-template/HEAD/template/components/Footer.vue -------------------------------------------------------------------------------- /template/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-community/koa-template/HEAD/template/layouts/default.vue -------------------------------------------------------------------------------- /template/layouts/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-community/koa-template/HEAD/template/layouts/error.vue -------------------------------------------------------------------------------- /template/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-community/koa-template/HEAD/template/nuxt.config.js -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-community/koa-template/HEAD/template/package.json -------------------------------------------------------------------------------- /template/pages/about.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-community/koa-template/HEAD/template/pages/about.vue -------------------------------------------------------------------------------- /template/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-community/koa-template/HEAD/template/pages/index.vue -------------------------------------------------------------------------------- /template/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-community/koa-template/HEAD/template/server/index.js -------------------------------------------------------------------------------- /template/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-community/koa-template/HEAD/template/static/favicon.ico --------------------------------------------------------------------------------