Public Access
1
0

minor changes

This commit is contained in:
2025-08-14 22:25:32 -04:00
parent f9cacffccf
commit 6eccfaa5a0
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ module.exports = function(eleventyConfig) {
eleventyConfig.addPassthroughCopy("src/js"); eleventyConfig.addPassthroughCopy("src/js");
eleventyConfig.addPassthroughCopy("src/resume"); eleventyConfig.addPassthroughCopy("src/resume");
eleventyConfig.addPassthroughCopy("src/assets/images"); eleventyConfig.addPassthroughCopy("src/assets/images");
eleventyConfig.addPassthroughCopy({ "favicon" : "/" } ); eleventyConfig.addPassthroughCopy({ "favicon" : "/" } );
// Add a filter for readable dates using vanilla JS // Add a filter for readable dates using vanilla JS
eleventyConfig.addFilter("readableDate", dateObj => { eleventyConfig.addFilter("readableDate", dateObj => {
// The toLocaleDateString method can be used to format dates // The toLocaleDateString method can be used to format dates

View File

@@ -1,4 +1,4 @@
FROM node:lts-alpine FROM node:18-alpine
ENV NODE_ENV=production ENV NODE_ENV=production
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY package*.json ./