Skip to content

Commit

Permalink
ci: disable diagram generation on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
HiDeoo committed Feb 8, 2024
1 parent bee2628 commit 02ab26f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/astro.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { expressiveCodeD2Plugin } from './src/libs/ec'
export default defineConfig({
integrations: [
astroD2({
skipGeneration: !!process.env['VERCEL'],
skipGeneration: !!process.env['CI'] || !!process.env['VERCEL'],
}),
starlight({
customCss: ['./src/styles/custom.css'],
Expand Down

0 comments on commit 02ab26f

Please sign in to comment.