mirror of https://github.com/sveltejs/svelte
Add support for intercepting different file extensions, other than .html, in ssr. (#940)
Proposal for #939pull/946/head
parent
440a81aa5a
commit
4c06226a5c
@ -0,0 +1 @@
|
||||
<p>i am a widget</p>
|
@ -0,0 +1 @@
|
||||
<div><p>i am a widget</p></div>
|
@ -0,0 +1,11 @@
|
||||
<div>
|
||||
<Widget/>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
import Widget from './Widget.svelte';
|
||||
|
||||
export default {
|
||||
components: { Widget }
|
||||
};
|
||||
</script>
|
Loading…
Reference in new issue