Skip to content

Commit

Permalink
Login cookie
Browse files Browse the repository at this point in the history
  • Loading branch information
bmingles committed Nov 24, 2023
1 parent 91a3b0c commit b2c023f
Show file tree
Hide file tree
Showing 13 changed files with 888 additions and 44 deletions.
2 changes: 2 additions & 0 deletions gradegrid/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
db/

# build output
dist/

Expand Down
11 changes: 10 additions & 1 deletion gradegrid/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
import { defineConfig } from 'astro/config';
import solidJs from "@astrojs/solid-js";

import node from "@astrojs/node";

// https://astro.build/config
export default defineConfig({});
export default defineConfig({
integrations: [solidJs()],
output: "server",
adapter: node({
mode: "standalone"
})
});
Loading

0 comments on commit b2c023f

Please sign in to comment.