Aktualisiere Konfigurationen und entferne nicht benötigte Skripte aus der Umgebung
This commit is contained in:
2
.env
2
.env
@@ -20,4 +20,4 @@ STAGING_PATH=/staging/__ORG__/__PROJECT__/dev
|
|||||||
LIVE_URL=https://www
|
LIVE_URL=https://www
|
||||||
STAGING_URL=https://dev-__PROJECT_NAME__.staging.testversion.online
|
STAGING_URL=https://dev-__PROJECT_NAME__.staging.testversion.online
|
||||||
|
|
||||||
START_SCRIPT=:ssr
|
#START_SCRIPT=:ssr
|
||||||
|
|||||||
@@ -1,20 +1,20 @@
|
|||||||
namespace: __NAMESPACE__
|
namespace: __NAMESPACE__
|
||||||
|
|
||||||
meta:
|
meta:
|
||||||
imageUrl:
|
imageUrl:
|
||||||
eval: "$projectBase + '_/assets/img/admin-pic.jpg'"
|
eval: "$projectBase + '_/assets/img/admin-pic.jpg'"
|
||||||
injectIntoHead:
|
injectIntoHead:
|
||||||
# inject font faces (not possible in shadow dom for preview)
|
# inject font faces (not possible in shadow dom for preview)
|
||||||
eval: |
|
eval: |
|
||||||
"<link rel='stylesheet' href='" + $projectBase + "_/assets/fonts/fonts.css?t=" + $project?.updateTime + "'>"
|
"<link rel='stylesheet' href='" + $projectBase + "_/assets/fonts/fonts.css?t=" + $project?.updateTime + "'>"
|
||||||
|
|
||||||
collections:
|
collections:
|
||||||
- !include collections/ssr.yml
|
- !include collections/ssr.yml
|
||||||
|
|
||||||
assets:
|
assets:
|
||||||
- name: dist
|
- name: dist
|
||||||
path: ../frontend/dist
|
path: ../frontend/dist
|
||||||
- name: fonts
|
- name: fonts
|
||||||
path: ../frontend/assets/fonts
|
path: ../frontend/assets/fonts
|
||||||
- name: img
|
- name: img
|
||||||
path: ../frontend/assets/img
|
path: ../frontend/assets/img
|
||||||
|
|||||||
@@ -35,6 +35,7 @@ services:
|
|||||||
MAIL_HOST: maildev:25
|
MAIL_HOST: maildev:25
|
||||||
SECURITY_ALLOWABSOLUTEPATHS: "true"
|
SECURITY_ALLOWABSOLUTEPATHS: "true"
|
||||||
SECURITY_ALLOWUPPERPATHS: "true"
|
SECURITY_ALLOWUPPERPATHS: "true"
|
||||||
|
RESPONSE_ERROR_STACK: "true"
|
||||||
depends_on:
|
depends_on:
|
||||||
- mongo
|
- mongo
|
||||||
expose:
|
expose:
|
||||||
@@ -63,6 +64,7 @@ services:
|
|||||||
MAIL_HOST: maildev:25
|
MAIL_HOST: maildev:25
|
||||||
SECURITY_ALLOWABSOLUTEPATHS: "true"
|
SECURITY_ALLOWABSOLUTEPATHS: "true"
|
||||||
SECURITY_ALLOWUPPERPATHS: "true"
|
SECURITY_ALLOWUPPERPATHS: "true"
|
||||||
|
RESPONSE_ERROR_STACK: "true"
|
||||||
depends_on:
|
depends_on:
|
||||||
- mongo
|
- mongo
|
||||||
user: ${CODER_UID}:${CODER_GID}
|
user: ${CODER_UID}:${CODER_GID}
|
||||||
|
|||||||
@@ -8,13 +8,13 @@
|
|||||||
<base href="/" />
|
<base href="/" />
|
||||||
<link rel="stylesheet" href="/dist/index.css?t=__TIMESTAMP__" />
|
<link rel="stylesheet" href="/dist/index.css?t=__TIMESTAMP__" />
|
||||||
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/img/apple-touch-icon.png" />
|
<!-- <link rel="apple-touch-icon" sizes="180x180" href="/assets/img/apple-touch-icon.png" />
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicon-32x32.png" />
|
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicon-32x32.png" />
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicon-16x16.png" />
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicon-16x16.png" />
|
||||||
<link rel="manifest" href="/assets/img/site.webmanifest" />
|
<link rel="manifest" href="/assets/img/site.webmanifest" />
|
||||||
<link rel="mask-icon" href="/assets/img/safari-pinned-tab.svg" color="#e20019" />
|
<link rel="mask-icon" href="/assets/img/safari-pinned-tab.svg" color="#e20019" />
|
||||||
<meta name="msapplication-TileColor" content="#e20019" />
|
<meta name="msapplication-TileColor" content="#e20019" />
|
||||||
<meta name="theme-color" content="#ffffff" />
|
<meta name="theme-color" content="#ffffff" /> -->
|
||||||
|
|
||||||
<!--HEAD-->
|
<!--HEAD-->
|
||||||
|
|
||||||
|
|||||||
@@ -3,8 +3,6 @@ import { hydrate } from "svelte"
|
|||||||
|
|
||||||
let appContainer = document?.getElementById("appContainer")
|
let appContainer = document?.getElementById("appContainer")
|
||||||
|
|
||||||
console.log("Features: ", { hydrate })
|
|
||||||
|
|
||||||
const app = hydrate(App, { target: appContainer })
|
const app = hydrate(App, { target: appContainer })
|
||||||
|
|
||||||
export default app
|
export default app
|
||||||
|
|||||||
Reference in New Issue
Block a user