Skip to content

Commit

Permalink
Merge pull request #188 from datagrove/next-release
Browse files Browse the repository at this point in the history
Update to Next Release
  • Loading branch information
r-southworth authored Nov 26, 2024
2 parents 46a9e55 + 493a936 commit f78dc46
Show file tree
Hide file tree
Showing 141 changed files with 19,687 additions and 9,282 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ jobs:
version: latest

- run: supabase link --project-ref $SUPABASE_PROJECT_ID
- run: supabase db push
- run: supabase db push
3 changes: 1 addition & 2 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"


npx lint-staged
6 changes: 4 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{
"prettier.printWidth": 250
}
"prettier.printWidth": 250,
"deno.enable": true,
"deno.lint": true,
}
13 changes: 9 additions & 4 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ import compress from 'astro-compress'
const locales = languages
const defaultLocale = defaultLang

const isDev = import.meta.env.DEV;

// https://astro.build/config
export default defineConfig({
output: 'server',
Expand Down Expand Up @@ -77,12 +79,15 @@ export default defineConfig({
}),
mdx(),
compress()
]

// vite: {
],
// vite: {
// // resolve: {
// // conditions: ["worker", "webworker"],
// // mainFields: ["module"],
// // }
// // define: {
// // 'process.env.PUBLIC_VITE_SUPABASE_URL': JSON.stringify(process.env.PUBLIC_VITE_SUPABASE_URL),
// // 'process.env.PUBLIC_VITE_SUPABASE_ANON_KEY': JSON.stringify(process.env.PUBLIC_VITE_SUPABASE_ANON_KEY),
// // }
// },
// },
})
Loading

0 comments on commit f78dc46

Please sign in to comment.