Skip to content

Commit c4a40b1

Browse files
committed
New VSCode
1 parent 141b101 commit c4a40b1

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

packages/app/config/webpack.common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ module.exports = {
465465
[
466466
{
467467
from: '../../standalone-packages/vscode-editor/release/min/vs',
468-
to: 'public/vscode14/vs',
468+
to: 'public/vscode15/vs',
469469
force: true,
470470
},
471471
{

packages/app/config/webpack.prod.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ module.exports = merge(commonConfig, {
150150
},
151151
},
152152
{
153-
urlPattern: /\/vscode14/,
153+
urlPattern: /\/vscode15/,
154154
handler: 'cacheFirst',
155155
options: {
156156
cache: {

packages/app/src/app/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@
6767
}
6868
</script>
6969

70-
<link data-name="/public/vscode14/vs/editor/editor.main"
70+
<link data-name="/public/vscode15/vs/editor/editor.main"
7171
rel="preload"
7272
as="style"
73-
href="/public/vscode14/vs/editor/codesandbox.editor.main.css">
73+
href="/public/vscode15/vs/editor/codesandbox.editor.main.css">
7474
</link>
75-
<link rel="preload" as="script" href="/public/vscode14/vs/editor/codesandbox.editor.main.js"></link>
75+
<link rel="preload" as="script" href="/public/vscode15/vs/editor/codesandbox.editor.main.js"></link>
7676
</head>
7777
<body style="margin: 0; padding: 0;">
7878
<!-- Google Tag Manager (noscript) -->

packages/app/src/app/vscode/metadata.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const VSCODE_METADATA = {
22
CORE: {
33
paths: {
4-
src: process.env.VSCODE ? '/vscode/out/vs' : '/public/vscode14/vs',
4+
src: process.env.VSCODE ? '/vscode/out/vs' : '/public/vscode15/vs',
55
'npm/dev': 'node_modules/monaco-editor-core/dev/vs',
66
'npm/min': 'node_modules/monaco-editor-core/min/vs',
77
built: '/vscode/out-monaco-editor-core/min/vs',

0 commit comments

Comments
 (0)