Skip to content

Commit

Permalink
Merge pull request #1 from gxskpo/main
Browse files Browse the repository at this point in the history
feat: integrate Tailwind CSS and Prettier
  • Loading branch information
SergioRibera authored Oct 8, 2024
2 parents 01930ea + a13e924 commit 55a744e
Show file tree
Hide file tree
Showing 9 changed files with 909 additions and 13 deletions.
5 changes: 5 additions & 0 deletions .prettierrc.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/** @type {import("prettier").Config} */
export default {
tabWidth: 2,
plugins: ["prettier-plugin-astro"],
};
9 changes: 7 additions & 2 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,17 @@ import { defineConfig } from 'astro/config';

import cloudflare from '@astrojs/cloudflare';

import tailwind from '@astrojs/tailwind';

// https://astro.build/config
export default defineConfig({
output: 'server',

adapter: cloudflare({
platformProxy: {
enabled: false
}
})
});
}),

integrations: [tailwind()]
});
Binary file modified bun.lockb
Binary file not shown.
Loading

0 comments on commit 55a744e

Please sign in to comment.