-
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.
- Loading branch information
1 parent
0292948
commit 55ce248
Showing
8 changed files
with
482 additions
and
232 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -23,3 +23,5 @@ pnpm-debug.log* | |
# local folders | ||
.history | ||
.wrangler | ||
|
||
.vercel |
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,23 +1,26 @@ | ||
// @ts-check | ||
import { defineConfig } from "astro/config"; | ||
import tailwind from "@astrojs/tailwind"; | ||
import astroIcon from 'astro-icon' | ||
|
||
import astroIcon from 'astro-icon'; | ||
import playformCompress from "@playform/compress"; | ||
|
||
// https://astro.build/config | ||
export default defineConfig({ | ||
integrations: [tailwind(), astroIcon({ | ||
include: { | ||
mdi: ["*"], | ||
'ri': ['*'], | ||
'simple-icons': ['*'], | ||
}, | ||
}), playformCompress({ | ||
CSS: false, | ||
Image: false, | ||
Action: { | ||
Passed: async () => true, // https://github.com/PlayForm/Compress/issues/376 | ||
}, | ||
})], | ||
integrations: [ | ||
tailwind(), | ||
astroIcon({ | ||
include: { | ||
mdi: ["*"], | ||
'ri': ['*'], | ||
'simple-icons': ['*'], | ||
}, | ||
}), | ||
playformCompress({ | ||
CSS: false, | ||
Image: false, | ||
Action: { | ||
Passed: async () => true, // https://github.com/PlayForm/Compress/issues/376 | ||
}, | ||
}) | ||
], | ||
}); |
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,30 @@ | ||
// @ts-check | ||
import { defineConfig } from "astro/config"; | ||
import tailwind from "@astrojs/tailwind"; | ||
import astroIcon from 'astro-icon'; | ||
import vercel from "@astrojs/vercel/static"; | ||
import playformCompress from "@playform/compress"; | ||
|
||
// https://astro.build/config | ||
export default defineConfig({ | ||
integrations: [ | ||
tailwind(), | ||
astroIcon({ | ||
include: { | ||
mdi: ["*"], | ||
'ri': ['*'], | ||
'simple-icons': ['*'], | ||
}, | ||
}), | ||
playformCompress({ | ||
CSS: false, | ||
Image: false, | ||
Action: { | ||
Passed: async () => true, // https://github.com/PlayForm/Compress/issues/376 | ||
}, | ||
}) | ||
], | ||
outDir: 'dist', | ||
output: 'static', | ||
adapter: vercel() | ||
}); |
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,7 @@ | ||
[build.environment] | ||
NETLIFY_USE_PNPM = "true" | ||
NODE_VERSION = "18" | ||
|
||
[build] | ||
command = "OUTPUT=netlify astro build" | ||
publish = "dist" |
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
Oops, something went wrong.