Skip to content

Commit

Permalink
chore: updates
Browse files Browse the repository at this point in the history
  • Loading branch information
broccolai committed Oct 18, 2024
1 parent 543671d commit cab7260
Show file tree
Hide file tree
Showing 25 changed files with 4,296 additions and 6,226 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ dist
netlify
src/@panda
.env
.astro

# dependencies
/node_modules
Expand All @@ -25,3 +26,7 @@ gitignore
# System Files
.DS_Store
Thumbs.db

## Panda
./src/@panda
./src/@panda-studio
15 changes: 11 additions & 4 deletions astro.config.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
import { defineConfig } from 'astro/config';

import solidJs from '@astrojs/solid-js';
import pandacss from '@pandacss/astro';
import vercel from '@astrojs/vercel/serverless';
import Icons from 'unplugin-icons/vite';

export default defineConfig({
integrations: [pandacss(), solidJs()],
integrations: [solidJs()],
build: {
inlineStylesheets: 'always',
},
output: 'server',
output: 'static',
adapter: vercel(),
});
vite: {
plugins: [
Icons({
compiler: 'solid',
}),
],
},
});
Binary file modified bun.lockb
Binary file not shown.
Loading

0 comments on commit cab7260

Please sign in to comment.