├── .env-dist ├── .eslintrc.js ├── .gitignore ├── README.md ├── assets ├── README.md └── img │ ├── logo_footer.svg │ └── logo_header.svg ├── commitlint.config.js ├── components └── README.md ├── jsconfig.json ├── layouts ├── README.md ├── default.vue └── error.vue ├── locales ├── README.md └── Readme.md ├── middleware └── README.md ├── nuxt.config.js ├── package.json ├── pages └── Readme.md ├── plugins └── README.md ├── static ├── README.md ├── favicon.ico ├── favicon.png └── icon.png ├── store ├── README.md └── index.js ├── stylelint.config.js ├── tailwind.config.js ├── vuefront.config.js └── yarn.lock /.env-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/.env-dist -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .nuxt 2 | node_modules 3 | sw.js 4 | .env 5 | dist/ 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/img/logo_footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/assets/img/logo_footer.svg -------------------------------------------------------------------------------- /assets/img/logo_header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/assets/img/logo_header.svg -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'] 3 | } 4 | -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/components/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/jsconfig.json -------------------------------------------------------------------------------- /layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/layouts/README.md -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /layouts/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/layouts/error.vue -------------------------------------------------------------------------------- /locales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/locales/README.md -------------------------------------------------------------------------------- /locales/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/locales/Readme.md -------------------------------------------------------------------------------- /middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/middleware/README.md -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/package.json -------------------------------------------------------------------------------- /pages/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/pages/Readme.md -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/plugins/README.md -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/static/README.md -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/static/icon.png -------------------------------------------------------------------------------- /store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/store/README.md -------------------------------------------------------------------------------- /store/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/stylelint.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vuefront.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/vuefront.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuefront/vuefront-starter-kit/HEAD/yarn.lock --------------------------------------------------------------------------------