This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import dotenv from 'dotenv' | |
import Eleventy from '@11ty/eleventy' | |
import express from 'express' | |
import morgan from 'morgan' | |
import memoize from 'lodash/memoize.js' | |
import path from 'path' | |
import fs from 'fs' | |
const ENV = process.env.NODE_ENV || 'development' | |
const PORT = process.env.PORT || 3001 |