Skip to content

Commit cdf493c

Browse files
committed
💄 Modify website to build for Vercel
1 parent 9d9fd5a commit cdf493c

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

website/astro.config.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,13 @@ export default defineConfig({
1616
title: "Anyquery",
1717
credits: false,
1818
favicon: "/favicon.png",
19-
customCss: ["./src/docs.css", "./src/styles/global.css"],
19+
customCss: ["./src/docs.css"],
2020
logo: {
2121
src: "./public/images/logo.png",
2222
alt: "Anyquery logo",
2323
},
2424

2525
components: {
26-
Footer: "./src/components/footer-docs.astro",
2726
},
2827
description:
2928
"Anyquery allows you to run SQL queries on pretty much any data source, including REST APIs, local files, SQL databases, and more.",

website/src/pages/queries/index.astro

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,7 @@ Anyquery allows you to run SQL queries on pretty-much any data source`}
8686
</h2>
8787
<div class="flex flex-wrap gap-2">
8888
{
89-
pluginsWithQueries
90-
.entries()
91-
.toArray()
89+
Array.from(pluginsWithQueries)
9290
.sort((a, b) => a[0].localeCompare(b[0]))
9391
.map(([pluginName, _]) => {
9492
const plugin = pluginsMapper[pluginName];

0 commit comments

Comments
 (0)