Skip to content

Commit

Permalink
add playground to website
Browse files Browse the repository at this point in the history
  • Loading branch information
stirlhoss committed Nov 22, 2024
1 parent 481116a commit d539ea9
Show file tree
Hide file tree
Showing 10 changed files with 265 additions and 6,440 deletions.
4 changes: 2 additions & 2 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import node from "@astrojs/node";

import starlight from "@astrojs/starlight";

import qwikdev from "@qwikdev/astro";
import solidJs from "@astrojs/solid-js";

// https://astro.build/config
export default defineConfig({
Expand All @@ -13,7 +13,7 @@ export default defineConfig({
logo: { src: "./src/images/BABLRTransparent.png" },
prerender: false,
favicon: "/favicon.ico",
}), qwikdev()],
}), solidJs()],
server: { port: 8080 },
site: "https://bablr.org",
output: "server",
Expand Down
14 changes: 14 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import js from "@eslint/js";

export default [
js.configs.recommended,
{
languageOptions: {
parserOptions: {
ecmaFeatures: {
jsx: true,
},
},
},
},
];
Loading

0 comments on commit d539ea9

Please sign in to comment.