We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aea46d8 commit 79393d1Copy full SHA for 79393d1
client/src/App.tsx
@@ -178,7 +178,7 @@ function App() {
178
_leanMonaco.setInfoviewElement(infoviewRef.current!)
179
;(async () => {
180
await _leanMonaco.start(options)
181
- await leanMonacoEditor.start(editorRef.current!, `/project/${project}.lean`, code)
+ await leanMonacoEditor.start(editorRef.current!, `./${project}.lean`, code)
182
183
setEditor(leanMonacoEditor.editor)
184
setLeanMonaco(_leanMonaco)
server/bubblewrap.sh
@@ -33,7 +33,7 @@ if command -v bwrap >/dev/null 2>&1; then
33
--unshare-cgroup \
34
--die-with-parent \
35
--chdir "/project/" \
36
- lean --server
+ lake serve --
37
)
38
else
39
echo "bwrap is not installed. Running without container." >&2
0 commit comments