Hello,
Found a bug which results in unable to build.
When base is set in astro.config -> defineConfig.
The value set for base is duplicated when generating sriHashes.
example astro.config.mjs
export defineConfig({
base: './ap/pr-sit-pr47',
integrations: [
vue(),
shield(
{
sri: {
enableMiddleware: true, // MUST be enabled for dynamic pages!
hashesModule: modulePath, // SHOULD be set!
},
},
),
],
})

Can this be looked into please?