Skip to content

Instantly share code, notes, and snippets.

View kave-me's full-sized avatar
✌️

Kave McDaniel kave-me

✌️
View GitHub Profile
@kave-me
kave-me / .prettierignore
Created December 6, 2021 14:25
Ignore formating files; my stacks includes nextjs, react, typescript
/node_modules
/coverage
/.next
/out
/build
dist/
test-fixtures/
public
docs/
src/assets/
@segunadebayo
segunadebayo / NextGA.js
Created August 23, 2019 13:03
Add Google Analytics to NextJS
import NextHead from 'next/head'
import React from 'react'
import ReactGA from 'react-ga'
import Router from 'next/router'
// GA Tracking Id
const gaTrackingId = '[GOOGLE ANALYTICS TRACKING ID GOES HERE]'
Router.onRouteChangeComplete = () => {