Skip to content

Commit

Permalink
website
Browse files Browse the repository at this point in the history
  • Loading branch information
pyramation committed Apr 5, 2024
1 parent c8f4ed8 commit 8c9ea1c
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,10 @@ jobs:
run: |
cca --template connect-multi-chain --name connect-multi-chain
cd connect-multi-chain
yarn build
- name: website
run: |
cca --template website --name website
cd website
yarn build
1 change: 0 additions & 1 deletion templates/website/config/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
export * from './projects';
export * from './defaults';
1 change: 1 addition & 0 deletions templates/website/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) {
minHeight="100dvh"
backgroundColor={useColorModeValue("$white", "$background")}
>
{/* @ts-ignore */}
<Component {...pageProps} />
</Box>
</ThemeProvider>
Expand Down
5 changes: 4 additions & 1 deletion templates/website/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,11 @@
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"baseUrl": ".",
"paths": {
"@/*": ["*"]
"@/*": [
"*"
]
}
},
"include": [
Expand Down
Empty file removed templates/website/utils/index.ts
Empty file.

0 comments on commit 8c9ea1c

Please sign in to comment.