diff --git a/astro.config.mjs b/astro.config.mjs index 963856a..7b8efa0 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,5 +1,5 @@ import { defineConfig } from 'astro/config'; -import serviceWorker from '@ayco/astro-sw'; +// import serviceWorker from '@ayco/astro-sw'; import sitemap from "@astrojs/sitemap"; // https://astro.build/config @@ -7,17 +7,17 @@ export default defineConfig({ site: 'https://ayo.ayco.io', integrations: [ sitemap(), - serviceWorker({ - path: './src/sw.mjs', - assetCachePrefix: 'ayco-personal-site', - assetCacheVersionID: 'hey-mama', - logAssets: true, - excludeRoutes: [ - '/threads' - ], - esbuild: { - minify: true - } - }) + // serviceWorker({ + // path: './src/sw.mjs', + // assetCachePrefix: 'ayco-personal-site', + // assetCacheVersionID: 'hey-mama', + // logAssets: true, + // excludeRoutes: [ + // '/threads' + // ], + // esbuild: { + // minify: true + // } + // }) ] });