Skip to content

Commit

Permalink
chore: run prettier on project
Browse files Browse the repository at this point in the history
  • Loading branch information
raae committed Nov 18, 2023
1 parent 1ec8c10 commit aad7fd9
Show file tree
Hide file tree
Showing 6 changed files with 794 additions and 181 deletions.
11 changes: 11 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"plugins": ["prettier-plugin-astro"],
"overrides": [
{
"files": "*.astro",
"options": {
"parser": "astro"
}
}
]
}
6 changes: 3 additions & 3 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { defineConfig } from 'astro/config';
import { defineConfig } from "astro/config";

import netlify from "@astrojs/netlify/functions";

// https://astro.build/config
export default defineConfig({
output: "server",
adapter: netlify()
});
adapter: netlify(),
});
Loading

0 comments on commit aad7fd9

Please sign in to comment.