forked from boisgera/itn-web
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔧 Correction de l'import des images actu
c'était un souci lié à la migration vers astro:assets
- Loading branch information
Showing
21 changed files
with
2,939 additions
and
3,158 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 |
---|---|---|
@@ -1,19 +1,11 @@ | ||
import { defineConfig } from "astro/config"; | ||
import tailwind from "@astrojs/tailwind"; | ||
import image from "@astrojs/image"; | ||
import mdx from "@astrojs/mdx"; | ||
import sitemap from "@astrojs/sitemap"; | ||
|
||
// https://astro.build/config | ||
export default defineConfig({ | ||
base: "", | ||
site: "http://localhost:3000", | ||
integrations: [ | ||
tailwind(), | ||
image({ | ||
serviceEntryPoint: "@astrojs/image/sharp", | ||
}), | ||
mdx(), | ||
sitemap(), | ||
], | ||
integrations: [tailwind(), mdx(), sitemap()], | ||
}); |
Oops, something went wrong.