this repo has no description atmosphereconf-vods.wisp.place/
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

build

+39 -1
+27
.tangled/workflows/deploy.yaml
··· 1 + when: 2 + - event: ["push"] 3 + branch: ["main"] 4 + 5 + engine: "nixery" 6 + dependencies: 7 + nixpkgs: [nodejs, coreutils, curl, glibc, gnused] 8 + 9 + environment: 10 + SITE_PATH: "dist/client" 11 + SITE_NAME: "atmosphereconf-vods" 12 + WISP_HANDLE: "hipstersmoothie.com" 13 + 14 + steps: 15 + - name: build 16 + command: | 17 + npx --yes pnpm@latest install 18 + npx --yes pnpm@latest build 19 + 20 + - name: deploy 21 + command: | 22 + curl https://sites.wisp.place/nekomimi.pet/wisp-cli-binaries/wisp-cli-x86_64-linux -o wisp-cli 23 + chmod +x wisp-cli 24 + ./wisp-cli deploy "$WISP_HANDLE" \ 25 + --path "$SITE_PATH" \ 26 + --site "$SITE_NAME" \ 27 + --password "$WISP_APP_PASSWORD"
+12 -1
vite.config.ts
··· 22 22 targets: browserslistToTargets(browserslist("baseline 2024")), 23 23 } 24 24 }), 25 - tanstackStart(), 25 + tanstackStart({ 26 + prerender: { 27 + enabled: true, 28 + crawlLinks: true, 29 + }, 30 + pages: [ 31 + { 32 + 'path': '/', 33 + prerender: {enabled: true}, 34 + } 35 + ] 36 + }), 26 37 viteReact(), 27 38 ], 28 39 });