aboutsummaryrefslogtreecommitdiff
path: root/apps/website/astro.config.ts
diff options
context:
space:
mode:
authorPauline <git@ethanlibs.co>2023-11-26 17:13:07 -0500
committerPauline <git@ethanlibs.co>2023-11-26 17:13:07 -0500
commite9d485fe3b5db8c426ac03b30ed8917df0baa62d (patch)
tree69a684d53abce6b636620cc0000a6e84846246d7 /apps/website/astro.config.ts
parent85c31ee8d278ac6fa1f0ba143b78d65e5f665f32 (diff)
downloadNexus-e9d485fe3b5db8c426ac03b30ed8917df0baa62d.tar.gz
Nexus-e9d485fe3b5db8c426ac03b30ed8917df0baa62d.tar.bz2
Nexus-e9d485fe3b5db8c426ac03b30ed8917df0baa62d.zip
feat(lint): switch to eslint config and formatting (use vscode for autoformat)
Diffstat (limited to 'apps/website/astro.config.ts')
-rw-r--r--apps/website/astro.config.ts9
1 files changed, 4 insertions, 5 deletions
diff --git a/apps/website/astro.config.ts b/apps/website/astro.config.ts
index c7c7928..2e8c40c 100644
--- a/apps/website/astro.config.ts
+++ b/apps/website/astro.config.ts
@@ -1,6 +1,5 @@
import tailwind from '@astrojs/tailwind';
import { defineConfig } from 'astro/config';
-// @ts-ignore - Tailwind doesn't have types for this yet
import postcssNesting from 'tailwindcss/nesting';
// https://astro.build/config
@@ -9,8 +8,8 @@ export default defineConfig({
vite: {
css: {
postcss: {
- plugins: [postcssNesting]
- }
- }
- }
+ plugins: [postcssNesting],
+ },
+ },
+ },
});