mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-09 15:05:44 +01:00
restore context path support
This commit is contained in:
@@ -8,8 +8,8 @@
|
||||
manifest.json provides metadata used when your web app is added to the
|
||||
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
|
||||
-->
|
||||
<link rel="manifest" href="/manifest.json">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="manifest" href="/scm/manifest.json">
|
||||
<link rel="shortcut icon" href="/scm/favicon.ico">
|
||||
<!--
|
||||
Notice the use of %PUBLIC_URL% in the tags above.
|
||||
It will be replaced with the URL of the `public` folder during the build.
|
||||
@@ -19,7 +19,7 @@
|
||||
work correctly both with client-side routing and a non-root public URL.
|
||||
Learn how to configure a non-root public URL by running `npm run build`.
|
||||
-->
|
||||
<base href="/">
|
||||
<base href="/scm">
|
||||
<title>SCM-Manager</title>
|
||||
</head>
|
||||
<body>
|
||||
@@ -37,7 +37,10 @@
|
||||
To begin the development, run `npm start` or `yarn start`.
|
||||
To create a production bundle, use `npm run build` or `yarn build`.
|
||||
-->
|
||||
<script src="vendor.bundle.js"></script>
|
||||
<script src="scm-ui.bundle.js"></script>
|
||||
<script>
|
||||
window.ctxPath = "/scm";
|
||||
</script>
|
||||
<script src="/scm/vendor.bundle.js"></script>
|
||||
<script src="/scm/scm-ui.bundle.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user