Skip to content

Commit b005cdc

Browse files
committed
default to dom compile
1 parent 4d9d97b commit b005cdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/repl.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const Repl: ReplProps = (props) => {
2929

3030
const [error, setError] = createSignal('');
3131
const [compiled, setCompiled] = createSignal('');
32-
const [mode, setMode] = createSignal<typeof compileMode[keyof typeof compileMode]>(compileMode.SSR);
32+
const [mode, setMode] = createSignal<typeof compileMode[keyof typeof compileMode]>(compileMode.DOM);
3333

3434
function setCurrentTab(current: string) {
3535
const idx = props.tabs.findIndex((tab) => tab.name === current);

0 commit comments

Comments
 (0)