Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alextim/astro-portfolio
https://github.com/alextim/astro-portfolio
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/alextim/astro-portfolio
- Owner: alextim
- Created: 2022-03-10T20:20:58.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-03T21:10:54.000Z (almost 2 years ago)
- Last Synced: 2024-10-30T21:08:20.768Z (about 2 months ago)
- Language: Astro
- Size: 32.2 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Climbing in Turkey
## Images
### Logo
Two logo files are needed.
- _public/logo.svg_
- _src/assets/logo.png_:bulb: Use 512x512 resolution for logo.png.
### Images
Place images to _src/assets/images_ folder.
## Production
### Site Url
**File: _src/config/siteUrl.mjs_**
change
```js
const siteUrl = 'https://climbing-in-turkey-astro.netlify.app';
```to
```js
const siteUrl = 'https://YOURS-SITE-DOMAIN';
```:bulb: No trailing slash!
**File: _public/robots.txt_**
change
```text
Sitemap: https://climbing-in-turkey-astro.netlify.app/sitemap.xml
```to
```text
Sitemap: https://YOURS-SITE-DOMAIN/sitemap.xml
```### Enable Indexing
**File: _netlify.toml_**
```toml
X-Robots-Tag = "noindex, nofollow"
``````toml
X-Robots-Tag = "index, follow"
```**File: _src/config/seo.config.mjs_**
change
```js
disableIndexing: true,
```to
```js
disableIndexing: false,
```**File: _public/robots.txt_**
change
```text
Disallow: /
```to
```text
Disallow:
```