✅ COMPLETED: 1. Dockerfile uses port 80 (astro preview) 2. BaseLayout imports globals.css 3. globals.css with Tailwind v4 @theme syntax 4. index.astro has Header, Footer, FixedContact 5. All image references fixed to existing files 6. Hero uses hdpe_pipe_main.jpg 7. Product cards use hdpe001.jpg 8. pt-20 on main for fixed header ✅ TESTED LOCALLY: - Build: 15 pages in 1.27s - Docker build successful - Port 80 working - Images load - CSS works Ready for Easypanel deployment.
46 lines
1.5 KiB
JavaScript
46 lines
1.5 KiB
JavaScript
import { fileURLToPath } from "node:url";
|
|
import ancestor from "common-ancestor-path";
|
|
import {
|
|
appendExtension,
|
|
appendForwardSlash,
|
|
removeLeadingForwardSlashWindows
|
|
} from "../core/path.js";
|
|
import { viteID } from "../core/util.js";
|
|
function getFileInfo(id, config) {
|
|
const sitePathname = appendForwardSlash(
|
|
config.site ? new URL(config.base, config.site).pathname : config.base
|
|
);
|
|
const fileId = id.split("?")[0];
|
|
let fileUrl = fileId.includes("/pages/") ? fileId.replace(/^.*?\/pages\//, sitePathname).replace(/(?:\/index)?\.(?:md|markdown|mdown|mkdn|mkd|mdwn|astro)$/, "") : void 0;
|
|
if (fileUrl && config.trailingSlash === "always") {
|
|
fileUrl = appendForwardSlash(fileUrl);
|
|
}
|
|
if (fileUrl && config.build.format === "file") {
|
|
fileUrl = appendExtension(fileUrl, "html");
|
|
}
|
|
return { fileId, fileUrl };
|
|
}
|
|
function normalizeFilename(filename, root) {
|
|
if (filename.startsWith("/@fs")) {
|
|
filename = filename.slice("/@fs".length);
|
|
} else if (filename.startsWith("/") && !ancestor(filename, fileURLToPath(root))) {
|
|
const url = new URL("." + filename, root);
|
|
filename = viteID(url);
|
|
}
|
|
return removeLeadingForwardSlashWindows(filename);
|
|
}
|
|
const postfixRE = /[?#].*$/s;
|
|
function cleanUrl(url) {
|
|
return url.replace(postfixRE, "");
|
|
}
|
|
const specialQueriesRE = /(?:\?|&)(?:url|raw|direct)(?:&|$)/;
|
|
function hasSpecialQueries(id) {
|
|
return specialQueriesRE.test(id);
|
|
}
|
|
export {
|
|
cleanUrl,
|
|
getFileInfo,
|
|
hasSpecialQueries,
|
|
normalizeFilename
|
|
};
|