✅ 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.
42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
export const name = 'removeDimensions';
|
|
export const description =
|
|
'removes width and height in presence of viewBox (opposite to removeViewBox)';
|
|
|
|
/**
|
|
* Remove width/height attributes and add the viewBox attribute if it's missing
|
|
*
|
|
* @example
|
|
* <svg width="100" height="50" />
|
|
* ↓
|
|
* <svg viewBox="0 0 100 50" />
|
|
*
|
|
* @author Benny Schudel
|
|
*
|
|
* @type {import('../lib/types.js').Plugin}
|
|
*/
|
|
export const fn = () => {
|
|
return {
|
|
element: {
|
|
enter: (node) => {
|
|
if (node.name === 'svg') {
|
|
if (node.attributes.viewBox != null) {
|
|
delete node.attributes.width;
|
|
delete node.attributes.height;
|
|
} else if (
|
|
node.attributes.width != null &&
|
|
node.attributes.height != null &&
|
|
Number.isNaN(Number(node.attributes.width)) === false &&
|
|
Number.isNaN(Number(node.attributes.height)) === false
|
|
) {
|
|
const width = Number(node.attributes.width);
|
|
const height = Number(node.attributes.height);
|
|
node.attributes.viewBox = `0 0 ${width} ${height}`;
|
|
delete node.attributes.width;
|
|
delete node.attributes.height;
|
|
}
|
|
}
|
|
},
|
|
},
|
|
};
|
|
};
|