chore: make cloudflare 404s happy
This commit is contained in:
parent
78953dd4c2
commit
e45261bb31
5 changed files with 18 additions and 18 deletions
|
@ -6,7 +6,7 @@ import markdownItAnchor from 'markdown-it-anchor'
|
|||
import markdownItFootnote from 'markdown-it-footnote'
|
||||
import htmlmin from 'html-minifier-terser'
|
||||
import filters from './config/filters/index.js'
|
||||
import { minifyJsComponents } from './config/events/index.js'
|
||||
import { copy404Page, minifyJsComponents } from './config/events/index.js'
|
||||
import { allContent, popularPosts, searchIndex, siteMap } from './config/collections/index.js'
|
||||
import { DateTime } from 'luxon'
|
||||
|
||||
|
@ -106,6 +106,7 @@ export default async function (eleventyConfig) {
|
|||
})
|
||||
|
||||
// events
|
||||
eleventyConfig.on('afterBuild', copy404Page)
|
||||
eleventyConfig.on('afterBuild', minifyJsComponents)
|
||||
|
||||
return {
|
||||
|
|
17
_redirects
17
_redirects
|
@ -44,18 +44,6 @@
|
|||
/posts/2023/semi-automated-hashtags-syndicated-posts/ /posts/2023/semi-automated-hashtags-for-syndicated-posts/ 301
|
||||
/posts/2023/automating-rss-syndication-with-nextjs-github/ /posts/2023/automating-rss-syndication-and-sharing-with-nextjs-and-github/ 301
|
||||
/posts/2023/locally-stored-music-and-storage-as-a-meaningful-constraint/ /posts/2023/doppler-locally-stored-music-and-storage-as-a-beneficial-constraint/ 301
|
||||
|
||||
# 404s
|
||||
/* /404.html 404
|
||||
/robot.txt /robots.txt 301
|
||||
robotx.txt /robots.txt 301
|
||||
/sitemap /sitemap.xml 301
|
||||
/sitemap.txt /sitemap.xml 301
|
||||
/blog / 301
|
||||
/posts/2024 / 301
|
||||
/stats /search 301
|
||||
/books/want-to-read /books 301
|
||||
/watching/movies-to-watch /watching 301
|
||||
/blog/digital-privacy-tools /posts/2021/digital-privacy-tools/ 301
|
||||
|
||||
# feeds
|
||||
|
@ -74,7 +62,7 @@ robotx.txt /robots.txt 301
|
|||
/follow.json https://feedpress.me/coryd-all.json
|
||||
|
||||
# general
|
||||
/articles/ / 301
|
||||
/articles/ /posts/ 301
|
||||
/recent/movies /watching/recent/movies 301
|
||||
/recent/shows /watching/recent/shows 301
|
||||
/mastodon https://social.lol/@cory 301
|
||||
|
@ -82,4 +70,5 @@ robotx.txt /robots.txt 301
|
|||
/tags /search 301
|
||||
/tags/* /search 301
|
||||
/music/genre/* /music/genres/:splat 301
|
||||
/reading /books
|
||||
/reading /books
|
||||
/stats /search 301
|
|
@ -1,4 +1,5 @@
|
|||
import fs from 'fs'
|
||||
import path from 'path'
|
||||
import { minify } from 'terser'
|
||||
|
||||
export const minifyJsComponents = async () => {
|
||||
|
@ -14,3 +15,12 @@ export const minifyJsComponents = async () => {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
export const copy404Page = () => {
|
||||
const sourcePath = path.join('_site', '404', 'index.html')
|
||||
const destinationPath = path.join('_site', '404.html')
|
||||
|
||||
fs.copyFile(sourcePath, destinationPath, (err) => {
|
||||
if (err) console.error('Error copying 404 page:', err)
|
||||
})
|
||||
}
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "20.9.2",
|
||||
"version": "20.9.3",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "coryd.dev",
|
||||
"version": "20.9.2",
|
||||
"version": "20.9.3",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cdransf/api-text": "^1.4.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "20.9.2",
|
||||
"version": "20.9.3",
|
||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
Reference in a new issue