We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fc0485 commit 7b13326Copy full SHA for 7b13326
src/build/verification.ts
@@ -94,10 +94,13 @@ const formDetectionRegex = /<form[^>]*?\s(netlify|data-netlify)[=>\s]/
94
95
export async function verifyNetlifyFormsWorkaround(ctx: PluginContext) {
96
const srcDir = ctx.resolveFromSiteDir('public')
97
- const paths = await glob(join(srcDir, '**/*.html'))
+ const paths = await glob('**/*.html', {
98
+ cwd: srcDir,
99
+ dot: true,
100
+ })
101
try {
102
for (const path of paths) {
- const html = await readFile(path, 'utf-8')
103
+ const html = await readFile(join(srcDir, path), 'utf-8')
104
if (formDetectionRegex.test(html)) {
105
verifications.add('netlifyFormsWorkaround')
106
return
0 commit comments