mirror of
https://github.com/Start9Labs/start9.com.git
synced 2026-03-30 04:02:00 +00:00
* optimize data for ticker * rework data model for cleaner be your own section * wip * delete deprecated assets * edit copy; misc small style fixes * reenable ticker, update nexcloud, edit embassy one name * rearrange support section * new graphiccs to info section * bold personal server iheader in info section * mobile styling for be your own section * adjust infographics section * adjust underline + animmation * add ui screenshots to powered by section * fix overflow, sizing, spacing * renable ticker * fix marketplace link * more link updates * edit team bios and fix apostrophes * update footer with bdonation link; adjust scss spacing * copy changes * add license page * clean up spacing and uunused files * Update src/_includes/components/landing/community.njk * Update src/_includes/components/landing/infographics.njk * Update src/_includes/components/landing/powered-by.njk * Update src/_includes/components/landing/support.njk * connect subscribe api * implement newsletter subscription * audit all links and cleanup * add 404 page and more cleanup * add sitemap and robots * fix service links * small fixes + copy edits * fix infographics and ticker spacing * update emails * update docs links and temp remove team * update docs link urls * fix diy link * typo * typo and sizing * Update src/about.njk Co-authored-by: Matt Hill <matthewonthemoon@gmail.com>
66 lines
2.5 KiB
JavaScript
66 lines
2.5 KiB
JavaScript
const eleventySass = require("eleventy-sass");
|
|
const faviconPlugin = require("eleventy-favicon");
|
|
const format = require('date-fns/format')
|
|
|
|
// https://github.com/artstorm/eleventy-plugin-seo
|
|
const pluginSEO = require("eleventy-plugin-seo");
|
|
|
|
// https://github.com/saneef/eleventy-plugin-img2picture
|
|
const img2picture = require("eleventy-plugin-img2picture");
|
|
|
|
// https://www.npmjs.com/package/@sardine/eleventy-plugin-tinysvg
|
|
const tinysvg = require('@sardine/eleventy-plugin-tinysvg');
|
|
|
|
// https://www.npmjs.com/package/@sardine/eleventy-plugin-tinyhtml
|
|
const tinyHTML = require('@sardine/eleventy-plugin-tinyhtml');
|
|
|
|
module.exports = function (eleventyConfig) {
|
|
|
|
eleventyConfig.addPassthroughCopy('src/assets/fonts');
|
|
eleventyConfig.addPassthroughCopy("./src/assets/js");
|
|
|
|
|
|
if (process.env.ELEVENTY_ENV === "enable-image-optim") {
|
|
// img2picture (recommend not enabling)
|
|
////// this plugin smartly optimizes images on build, such as converting pngs to smaller jpegs.
|
|
////// did not see noticable speed gains when enabled, but it did cause rendering issues on older versions of Safari (e.g. on Calalina).
|
|
////// specifially, jpeg masking (as a replacement for alpha pngs) doesn't seem to work for all browsers.
|
|
eleventyConfig.addPlugin(img2picture, {
|
|
// Should be same as Eleventy input folder set using `dir.input`.
|
|
eleventyInputDir: "src",
|
|
|
|
// Output folder for optimized images.
|
|
imagesOutputDir: "_site/assets/images",
|
|
|
|
// URL prefix for images src URLS.
|
|
// It should match with path suffix in `imagesOutputDir`.
|
|
// Eg: imagesOutputDir with `_site/images` likely need urlPath as `/images/`
|
|
urlPath: "/assets/images/",
|
|
sharpPngOptions: { pallette: true },
|
|
sharpJpegOptions: { quality: 100 }
|
|
});
|
|
} else {
|
|
// During development, copy the files to Eleventy's `dir.output`
|
|
eleventyConfig.addPassthroughCopy('./src/assets/images/');
|
|
}
|
|
|
|
//plugins
|
|
eleventyConfig.addPlugin(eleventySass);
|
|
eleventyConfig.addPlugin(faviconPlugin, { destination: './_site' });
|
|
eleventyConfig.addPlugin(pluginSEO, require("./src/_data/seo.json"));
|
|
eleventyConfig.addPlugin(tinyHTML);
|
|
eleventyConfig.addPlugin(tinysvg, {
|
|
baseUrl: 'src/_includes/svgs/',
|
|
});
|
|
|
|
eleventyConfig.addWatchTarget('./src/assets/styles/**/*')
|
|
|
|
// add date filter for human readability
|
|
eleventyConfig.addFilter('date', function (date, dateFormat) {
|
|
return format(date, dateFormat)
|
|
})
|
|
|
|
return {
|
|
dir: { input: "src", output: "_site", data: "_data" },
|
|
};
|
|
}; |