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 b161966 commit fd7a52aCopy full SHA for fd7a52a
build.ts
@@ -135,7 +135,7 @@ if (existsSync(outdir)) {
135
const start = performance.now();
136
137
// Scan for all HTML files in the project
138
-const entrypoints = [...new Bun.Glob('**.html').scanSync('src')]
+const entrypoints = [...new Bun.Glob('**.html').scanSync('src/pages')]
139
.map(a => path.resolve('src', a))
140
.filter(dir => !dir.includes('node_modules'));
141
console.log(`📄 Found ${entrypoints.length} HTML ${entrypoints.length === 1 ? 'file' : 'files'} to process\n`);
0 commit comments