├── .babelrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── index.js ├── package.json └── src ├── gatsby-browser.js └── web-vitals.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bejamas/gatsby-plugin-web-vitals/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bejamas/gatsby-plugin-web-vitals/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bejamas/gatsby-plugin-web-vitals/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bejamas/gatsby-plugin-web-vitals/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bejamas/gatsby-plugin-web-vitals/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bejamas/gatsby-plugin-web-vitals/HEAD/package.json -------------------------------------------------------------------------------- /src/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bejamas/gatsby-plugin-web-vitals/HEAD/src/gatsby-browser.js -------------------------------------------------------------------------------- /src/web-vitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bejamas/gatsby-plugin-web-vitals/HEAD/src/web-vitals.js --------------------------------------------------------------------------------