├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── cli.js ├── package.json ├── renovate.json ├── saofile.js └── template ├── .editorconfig ├── README.md ├── _.eslintrc.js ├── _.gitignore ├── _.prettierrc └── nuxt ├── assets └── README.md ├── components └── README.md ├── layouts ├── README.md └── default.vue ├── middleware └── README.md ├── nuxt.config.js ├── package.json ├── pages ├── README.md └── index.vue ├── plugins └── README.md ├── static ├── README.md └── favicon.ico └── store └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/cli.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/renovate.json -------------------------------------------------------------------------------- /saofile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/saofile.js -------------------------------------------------------------------------------- /template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/template/.editorconfig -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/template/README.md -------------------------------------------------------------------------------- /template/_.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/template/_.eslintrc.js -------------------------------------------------------------------------------- /template/_.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/template/_.gitignore -------------------------------------------------------------------------------- /template/_.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/template/_.prettierrc -------------------------------------------------------------------------------- /template/nuxt/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/template/nuxt/assets/README.md -------------------------------------------------------------------------------- /template/nuxt/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/template/nuxt/components/README.md -------------------------------------------------------------------------------- /template/nuxt/layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/template/nuxt/layouts/README.md -------------------------------------------------------------------------------- /template/nuxt/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/template/nuxt/layouts/default.vue -------------------------------------------------------------------------------- /template/nuxt/middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/template/nuxt/middleware/README.md -------------------------------------------------------------------------------- /template/nuxt/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/template/nuxt/nuxt.config.js -------------------------------------------------------------------------------- /template/nuxt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/template/nuxt/package.json -------------------------------------------------------------------------------- /template/nuxt/pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/template/nuxt/pages/README.md -------------------------------------------------------------------------------- /template/nuxt/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/template/nuxt/pages/index.vue -------------------------------------------------------------------------------- /template/nuxt/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/template/nuxt/plugins/README.md -------------------------------------------------------------------------------- /template/nuxt/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/template/nuxt/static/README.md -------------------------------------------------------------------------------- /template/nuxt/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/template/nuxt/static/favicon.ico -------------------------------------------------------------------------------- /template/nuxt/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgraewe/create-nuxt-tailwind-app/HEAD/template/nuxt/store/README.md --------------------------------------------------------------------------------