Skip to content

Commit e63a26e

Browse files
DorianZhengclaude
andcommitted
Fix build failure by adding astro-icon integration
The build was failing with "Rollup failed to resolve import virtual:astro-icon" because the astro-icon package requires its integration to be registered in astro.config.mjs to create the virtual module. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent a791a0a commit e63a26e

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

astro.config.mjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
// @ts-check
22
import { defineConfig } from 'astro/config';
3+
import icon from 'astro-icon';
34

45
// https://astro.build/config
56
export default defineConfig({
67
site: 'https://boxlite-labs.github.io',
78
base: '/website',
9+
integrations: [icon()],
810
});

0 commit comments

Comments
 (0)