diff --git a/package.json b/package.json index a31e8c6..66c3f94 100644 --- a/package.json +++ b/package.json @@ -23,6 +23,7 @@ "lint": "eslint ." }, "dependencies": { + "lodash": "^4.17.20", "next": "9.5.2", "next-images": "^1.4.1", "prop-types": "^15.7.2", diff --git a/src/pages/_app.js b/src/pages/_app.js index 51d6204..ea40811 100644 --- a/src/pages/_app.js +++ b/src/pages/_app.js @@ -1,10 +1,12 @@ import React from 'react'; import PropTypes from 'prop-types'; import Head from 'next/head'; +import _ from 'lodash'; import '../styles/index.css'; export default function App({ Component, pageProps }) { + console.log(_); return ( <>