mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-18 15:26:36 +00:00
feat(page): deprecate /playground and redirect to /problemset
Some checks failed
Docker Build and Push / docker-build-and-push (., Dockerfile, monaco-editor-lsp-next) (push) Failing after 38s
Docker Build and Push / docker-build-and-push (./docker/lsp/clangd, ./docker/lsp/clangd/Dockerfile, lsp-c) (push) Failing after 18s
Docker Build and Push / docker-build-and-push (./docker/lsp/clangd, ./docker/lsp/clangd/Dockerfile, lsp-cpp) (push) Failing after 38s
Some checks failed
Docker Build and Push / docker-build-and-push (., Dockerfile, monaco-editor-lsp-next) (push) Failing after 38s
Docker Build and Push / docker-build-and-push (./docker/lsp/clangd, ./docker/lsp/clangd/Dockerfile, lsp-c) (push) Failing after 18s
Docker Build and Push / docker-build-and-push (./docker/lsp/clangd, ./docker/lsp/clangd/Dockerfile, lsp-cpp) (push) Failing after 38s
This commit is contained in:
parent
0dbed9c284
commit
849c8bc609
@ -1,5 +1,6 @@
|
||||
import CodeEditor from "@/components/code-editor";
|
||||
// import CodeEditor from "@/components/code-editor";
|
||||
|
||||
export default function WorkspaceEditorPage() {
|
||||
return <CodeEditor />;
|
||||
// return <CodeEditor />;
|
||||
return null;
|
||||
}
|
||||
|
5
src/app/(app)/playground/page.tsx
Normal file
5
src/app/(app)/playground/page.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
import { redirect } from "next/navigation";
|
||||
|
||||
export default function PlaygroundPage() {
|
||||
redirect("/problemset");
|
||||
}
|
Loading…
Reference in New Issue
Block a user