forked from AREA44/astro-multiverse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move to v2 * fix astro sitemap * remove aspectRatio * add height * done
- Loading branch information
1 parent
22d9a8e
commit 765b46a
Showing
8 changed files
with
29 additions
and
22 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
// https://astro.build/config | ||
import { defineConfig } from "astro/config"; | ||
import sitemap from "@astrojs/sitemap"; | ||
|
||
// https://astro.build/config | ||
export default defineConfig({ | ||
site: "https://astro-multiverse.netlify.app", | ||
experimental: { | ||
assets: true, | ||
}, | ||
integrations: [sitemap()], | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
[build] | ||
command = "pnpm run build" | ||
publish = "dist" | ||
|
||
[[plugins]] | ||
# Netlify Plugin Lighthouse | ||
# see detail: https://github.com/netlify/netlify-plugin-lighthouse | ||
package = "@netlify/plugin-lighthouse" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"extends": ["config:base"], | ||
"dependencyDashboard": false, | ||
"labels": ["renovate"], | ||
"automerge": true, | ||
"schedule": ["before 3am on Monday"], | ||
"packageRules": [ | ||
{ | ||
"groupName": "astro", | ||
"labels": ["astro"], | ||
"matchPackageNames": ["astro"], | ||
"matchPackagePatterns": ["^@astro", "^astro"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
/// <reference path="../.astro/types.d.ts" /> | ||
/// <reference types="astro/client" /> | ||
/// <reference types="astro/client-image" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,3 @@ | ||
{ | ||
"extends": "astro/tsconfigs/base", | ||
"compilerOptions": { | ||
"types": ["@astrojs/image/client"], | ||
"allowJs": true, | ||
"baseUrl": ".", | ||
"paths": { | ||
"~/*": ["src/*"] | ||
} | ||
} | ||
"extends": "astro/tsconfigs/base" | ||
} |