Compare commits

...

4 Commits

Author SHA1 Message Date
19208e00fe bugfix
Some checks failed
deploy to production / lighthouse-evaluation (push) Failing after 0s
deploy to production / deploy (push) Successful in 36s
2024-08-20 14:39:28 +00:00
527285a487 icon fix
Some checks failed
deploy to production / lighthouse-evaluation (push) Failing after 0s
deploy to production / deploy (push) Successful in 47s
2024-07-11 19:23:20 +00:00
2aef815c81 fixes
Some checks failed
deploy to production / lighthouse-evaluation (push) Failing after 0s
deploy to production / deploy (push) Successful in 47s
2024-07-11 18:36:15 +00:00
ed25b0e8ba fixes
Some checks failed
deploy to production / lighthouse-evaluation (push) Failing after 0s
deploy to production / deploy (push) Failing after 24s
2024-07-11 18:35:03 +00:00
4 changed files with 27 additions and 14 deletions

View File

@@ -262,12 +262,6 @@ jobs:
run: |
yarn build
- name: build admin
env:
FORCE_COLOR: "true"
run: |
yarn build:admin
- name: build ssr
env:
FORCE_COLOR: "true"

View File

@@ -68,7 +68,7 @@
delete tempForm[undefined]
context.smtp.sendMail({
to: "info@allkids-erfurt.de",
from: "mail@webmakers.de",
from: "info@allkids-erfurt.de",
subject: "AllKids " + formTitle,
html: context.tpl.execute(context.fs.readFile("templates/form_mail.html"), {
context: context,

22
esbuild.config.admin.js Normal file
View File

@@ -0,0 +1,22 @@
const config = require("./esbuild.config.js")
const svelteConfig = require("./svelte.config.js")
config.options.minify = false
config.options.entryPoints = ["./frontend/src/admin.ts"]
config.options.outfile = "./" + config.distDir + "/admin.mjs"
delete config.options.outdir
config.options.splitting = false
config.options.plugins = [
config.sveltePlugin({
compilerOptions: {
css: false,
hydratable: false,
dev: (process.argv?.length > 2 ? process.argv[2] : "build") !== "build",
},
preprocess: svelteConfig.preprocess,
cache: true,
}),
config.resolvePlugin,
]
module.exports = config

View File

@@ -21,10 +21,7 @@
>
<div class="header">
<div class="icon">
<svg
id="mySvgObject{i}"
fill="var(--link-font-color)"
data-src="{`${apiBaseURL}content/${pageId}/${col.iconInfoBoard.icon?.src}`}"></svg>
<img id="mySvgObject{i}" src="{`${apiBaseURL}content/${pageId}/${col.iconInfoBoard.icon?.src}`}" />
</div>
<div class="title">
{col.iconInfoBoard.title}
@@ -49,9 +46,9 @@
align-items: center;
gap: 20px;
.icon {
width: 64px;
height: 64px;
svg {
width: 48px;
height: 48px;
img {
width: 100%;
height: 100%;
object-fit: contain;