Skip to content

Commit

Permalink
finally fix 404 error
Browse files Browse the repository at this point in the history
  • Loading branch information
bluescorpian committed Feb 5, 2025
1 parent 2e9979e commit 3454be1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,6 @@ jobs:
- name: Build project
run: pnpm run build

- name: List build output
run: ls -R dist

- name: Setup Pages
uses: actions/configure-pages@v5

Expand Down
9 changes: 5 additions & 4 deletions frontend/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
import { defineConfig } from "vite";
import { svelte } from "@sveltejs/vite-plugin-svelte";

// https://vite.dev/config/
export default defineConfig({
plugins: [svelte()],
})
base: "https://bluescorpian.github.io/wind2speed-tracker/",
plugins: [svelte()],
});

0 comments on commit 3454be1

Please sign in to comment.