Skip to content

Commit

Permalink
Update astro.config.mjs
Browse files Browse the repository at this point in the history
  • Loading branch information
Astrodevil committed Apr 9, 2024
1 parent a4b00dc commit 669069c
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
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";
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';

export default defineConfig({
site: "https://resourcegallery.live/",
site: 'https://resourcegallery.live/',
integrations: [
tailwind(),
image({
serviceEntryPoint: "astro/assets/services/noop",
serviceEntryPoint: '@astrojs/image/sharp',
}),
mdx(),
sitemap(),
],

vite: {
optimizeDeps: {
include: ['./assets/services/noop'], // Replace with the actual module name causing the issue
},
},
});

0 comments on commit 669069c

Please sign in to comment.