Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
import SvelteWrapper from './Wrapper.svelte';
export default (target) => {
return (component, props, children, { client }) => {
if (!target.hasAttribute('ssr')) return;
delete props['class'];
try {
new SvelteWrapper({
target,
props: { __astro_component: component, __astro_children: children, ...props },
hydrate: client !== 'only',
});
} catch (e) {}
};