Add latest changes from gitlab-org/gitlab@master

This commit is contained in:
GitLab Bot
2023-11-28 15:10:14 +00:00
parent a115ce8e49
commit b6d3467a44
51 changed files with 814 additions and 418 deletions

View File

@ -92,10 +92,10 @@ export default defineConfig({
define: {
// window can be undefined in a Web Worker
IS_EE: IS_EE
? 'typeof window !== "undefined" && window.gon && window.gon.ee'
? JSON.stringify('typeof window !== "undefined" && window.gon && window.gon.ee')
: JSON.stringify(false),
IS_JH: IS_JH
? 'typeof window !== "undefined" && window.gon && window.gon.jh'
? JSON.stringify('typeof window !== "undefined" && window.gon && window.gon.jh')
: JSON.stringify(false),
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
'process.env.SOURCEGRAPH_PUBLIC_PATH': JSON.stringify(SOURCEGRAPH_PUBLIC_PATH),