Skip to content

Commit

Permalink
feat(tokens): update to variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry Whorlow committed Jun 16, 2024
1 parent 0568c38 commit 5ad208b
Show file tree
Hide file tree
Showing 13 changed files with 889 additions and 145 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ pnpm-debug.log*

# macOS-specific files
.DS_Store

.vscode
10 changes: 8 additions & 2 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
import { defineConfig } from 'astro/config';

import tailwind from "@astrojs/tailwind";

// https://astro.build/config
export default defineConfig({
site: 'https://harry-whorlow.github.io',
base: '/portfolio',
server: { port: 1234, host: true },
});
server: {
port: 1234,
host: true
},
integrations: [tailwind()]
});
Loading

0 comments on commit 5ad208b

Please sign in to comment.