2.0.0 • Published 9 months ago

astro-convert v2.0.0

Weekly downloads
-
License
-
Repository
-
Last release
9 months ago

astro-convert 🫶

This Astro integration converts all your files into different formats.

Installation

There are two ways to add integrations to your project. Let's try the most convenient option first!

astro add command

Astro includes a CLI tool for adding first party integrations: astro add. This command will:

  1. (Optionally) Install all necessary dependencies and peer dependencies
  2. (Also optionally) Update your astro.config.* file to apply this integration

To install astro-convert, run the following from your project directory and follow the prompts:

# Using NPM
npx astro add astro-convert
# Using Yarn
yarn astro add astro-convert
# Using PNPM
pnpx astro add astro-convert

Install dependencies manually

First, install the astro-convert integration like so:

npm install -D -E astro-convert

Then, apply this integration to your astro.config.* file using the integrations property:

astro.config.ts

import type { AstroUserConfig } from "astro";
import img from "astro-convert";

export default (): AstroUserConfig => ({
	integrations: [img()],
});

Getting started

You can override any of the default options from the configurations of:

or disable them entirely:

import type { AstroUserConfig } from "astro";
import img from "astro-convert";

export default (): AstroUserConfig => ({
	integrations: [
		img({
			img: false,
		}),
	],
});

If your path is different than dist be sure to update it accordingly:

import type { AstroUserConfig } from "astro";
import img from "astro-convert";

export default (): AstroUserConfig => ({
	outDir: "./build",
	integrations: [
		img({
			path: "./build",
		}),
	],
});

Set logger to 0 if you do not want to see debug messages. Default is 2.

import type { AstroUserConfig } from "astro";
import img from "astro-convert";

export default (): AstroUserConfig => ({
	integrations: [
		img({
			logger: 0,
		}),
	],
});

Built with Lightrix/npm

2.0.0

9 months ago

0.0.1

2 years ago