chore: build directory
This commit is contained in:
parent
cb9a3b8f48
commit
4e0e559f0c
6 changed files with 7 additions and 7 deletions
|
@ -106,7 +106,7 @@ export default async function (eleventyConfig) {
|
|||
includes: "includes",
|
||||
layouts: "layouts",
|
||||
data: "data",
|
||||
output: "_site",
|
||||
output: "dist",
|
||||
},
|
||||
};
|
||||
}
|
||||
|
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,5 +1,5 @@
|
|||
# build output
|
||||
_site
|
||||
dist
|
||||
node_modules
|
||||
.cache
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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 () => {
|
||||
|
|
|
@ -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"
|
||||
},
|
||||
|
|
|
@ -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");
|
||||
});
|
||||
});
|
||||
|
|
Reference in a new issue