Compare commits

..

2 commits

Author SHA1 Message Date
737f233e10 chore: add favicon
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2025-02-11 11:26:53 +01:00
7d0204d65e chore: remove unused index.html 2025-02-11 11:26:53 +01:00
3 changed files with 1 additions and 13 deletions

View file

@ -1,12 +0,0 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="dev" type="js.build_tools.npm" nameIsGenerated="true">
<package-json value="$PROJECT_DIR$/package.json" />
<command value="run" />
<scripts>
<script value="dev" />
</scripts>
<node-interpreter value="project" />
<envs />
<method v="2" />
</configuration>
</component>

View file

@ -6,7 +6,7 @@ site:
COPY package.json bun.lock /site COPY package.json bun.lock /site
WORKDIR /site WORKDIR /site
RUN bun install --frozen-lockfile RUN bun install --frozen-lockfile
COPY --dir src index.html style.css vite.config.ts tsconfig.json svelte.config.js /site COPY --dir src vite.config.ts tsconfig.json svelte.config.js /site
COPY +assets-generated/ /site/assets/generated COPY +assets-generated/ /site/assets/generated
RUN export VITE_BUILD_DATE=$(date -Iminutes -u | sed 's/+00:00//') && bun x svelte-kit sync && bun run build RUN export VITE_BUILD_DATE=$(date -Iminutes -u | sed 's/+00:00//') && bun x svelte-kit sync && bun run build
SAVE ARTIFACT build AS LOCAL build SAVE ARTIFACT build AS LOCAL build

View file