2.0.0 • Published 2 years ago
astro-convert v2.0.0
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:
- (Optionally) Install all necessary dependencies and peer dependencies
- (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-convertInstall dependencies manually
First, install the astro-convert integration like so:
npm install -D -E astro-convertThen, 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,
}),
],
});