We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd7a52a commit 4eff058Copy full SHA for 4eff058
build.ts
@@ -136,7 +136,7 @@ const start = performance.now();
136
137
// Scan for all HTML files in the project
138
const entrypoints = [...new Bun.Glob('**.html').scanSync('src/pages')]
139
- .map(a => path.resolve('src', a))
+ .map(a => path.resolve('src', 'pages', a))
140
.filter(dir => !dir.includes('node_modules'));
141
console.log(`📄 Found ${entrypoints.length} HTML ${entrypoints.length === 1 ? 'file' : 'files'} to process\n`);
142
0 commit comments