diff --git a/.eleventy.js b/.eleventy.js index 8d732c94..48361449 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -106,7 +106,7 @@ export default async function (eleventyConfig) { includes: "includes", layouts: "layouts", data: "data", - output: "_site", + output: "dist", }, }; } diff --git a/.gitignore b/.gitignore index a55e8364..ed8a40e2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ # build output -_site +dist node_modules .cache diff --git a/config/events/index.js b/config/events/index.js index 21b3ccd1..12ae3792 100644 --- a/config/events/index.js +++ b/config/events/index.js @@ -3,7 +3,7 @@ import path from "path"; import { minify } from "terser"; export const minifyJsComponents = async () => { - const scriptsDir = "_site/assets/scripts"; + const scriptsDir = "dist/assets/scripts"; const minifyJsFilesInDir = async (dir) => { const files = fs.readdirSync(dir); diff --git a/config/plugins/css-config.js b/config/plugins/css-config.js index 677ea385..50fe022d 100644 --- a/config/plugins/css-config.js +++ b/config/plugins/css-config.js @@ -11,7 +11,7 @@ export const cssConfig = (eleventyConfig) => { eleventyConfig.addExtension("css", { outputFileExtension: "css", compile: async (inputContent, inputPath) => { - const outputPath = "_site/assets/css/index.css"; + const outputPath = "dist/assets/css/index.css"; if (inputPath.endsWith("index.css")) { return async () => { diff --git a/package.json b/package.json index 65b9f4aa..9e6cb57d 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "build": "ELEVENTY_PRODUCTION=true eleventy", "debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve", "update:deps": "npm upgrade && ncu", - "clean": "rimraf _site", + "clean": "rimraf dist", "build:worker": "node scripts/worker-build.mjs $WORKER_NAME", "deploy:worker": "wrangler deploy --env production --config workers/$npm_config_worker/wrangler.toml" }, diff --git a/server.js b/server.js index b64dfaad..a41d87d9 100644 --- a/server.js +++ b/server.js @@ -71,7 +71,7 @@ app.use((req, res, next) => { }); app.use( - express.static(path.join(__dirname, "_site"), { extensions: ["html"] }) + express.static(path.join(__dirname, "dist"), { extensions: ["html"] }) ); const proxy = createProxyMiddleware({ @@ -97,7 +97,7 @@ app.use( ); app.use((req, res) => { - res.status(404).sendFile(path.join(__dirname, "_site", "404.html"), (err) => { + res.status(404).sendFile(path.join(__dirname, "dist", "404.html"), (err) => { if (err) res.status(404).send("Page not found"); }); });