Feel free to contact me at [email protected] or tweet at me @statisticsftw
This is a rough outline of how we utilize next.js and S3/Cloudfront. Hope it helps!
It assumes some knowledge of AWS.
import Container from "components/ui/Container" | |
import VideoCard from "components/VideoCard" | |
import fetchData from "helpers/fetchData" | |
import { useEffect, useState, Fragment, useRef } from "react" | |
import { useInfiniteQuery } from "react-query" | |
import useIntersectionObserver from "../hooks/useIntersectionObserver" | |
import Select from "react-select" | |
import { useUIDSeed } from "react-uid" | |
import { useRouter } from "next/router" | |
import Seo from "components/Seo" |
Feel free to contact me at [email protected] or tweet at me @statisticsftw
This is a rough outline of how we utilize next.js and S3/Cloudfront. Hope it helps!
It assumes some knowledge of AWS.