aboutsummaryrefslogtreecommitdiff
path: root/pages/_app.js
blob: 0b0db957712ab2d450c064897f65dfec3d725344 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import '../styles/globals.css'
import { config } from '@fortawesome/fontawesome-svg-core'
import '@fortawesome/fontawesome-svg-core/styles.css'
config.autoAddCss = false

function MyApp({ Component, pageProps }) {
  return <Component {...pageProps} />
}

export default MyApp