Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Sep 29, 2023
1 parent 30412b0 commit 43c6480
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions astro.config.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@

export default (await import("astro/config")).defineConfig({
srcDir: "./Source",
publicDir: "./Public",
outDir: "./Target",
// TODO Place your site URL here
// site: "",
integrations: [
import.meta.env.MODE === "production" ? (await import("astrojs-service-worker")).default() : null,
import.meta.env.MODE === "production"
? (await import("astrojs-service-worker")).default()
: null,
(await import("@astrojs/sitemap")).default(),
(await import('astro-critters')).default({ Logger: 1 }),
(await import('@astrojs/prefetch')).default(),
(await import('astro-rome')).default({ Logger: 1 }),
(await import('astro-compress')).default({ Logger: 1 }),
(await import("astro-critters")).default({ Logger: 1 }),
(await import("@astrojs/prefetch")).default(),
(await import("astro-rome")).default({ Logger: 1 }),
(await import("astro-compress")).default({ Logger: 1 }),
],
vite: {
build: {
Expand Down

0 comments on commit 43c6480

Please sign in to comment.