ππ»βQueryββ
This Astro integration
allows you to use SQL queries
inside your components using PRQL.
There are two ways to add integrations to your project. Let's try the most convenient option first!
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 @playform/query
, run the following from your project directory and
follow the prompts:
Using NPM:
npx astro add @playform/query
Using Yarn:
yarn astro add @playform/query
Using PNPM:
pnpx astro add @playform/query
First, install the @playform/query
integration like so:
npm install -D -E @playform/query
Then, apply this integration to your astro.config.*
file using the
integrations
property:
astro.config.ts
import query from "@playform/query";
export default { integrations: [query()] };
astro.config.ts
import query from "@playform/query";
export default {
integrations: [
query({
Logger: 0,
}),
],
};
See CHANGELOG.md
for a history of changes to this integration.