├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── lib └── index.js ├── package.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashantpalikhe/nuxt-overclock/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashantpalikhe/nuxt-overclock/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashantpalikhe/nuxt-overclock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashantpalikhe/nuxt-overclock/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashantpalikhe/nuxt-overclock/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashantpalikhe/nuxt-overclock/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashantpalikhe/nuxt-overclock/HEAD/yarn.lock --------------------------------------------------------------------------------