diff options
-rw-r--r-- | .github/workflows/dockerhub.yml | 2 | ||||
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | vite.config.js | 3 |
3 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/dockerhub.yml b/.github/workflows/dockerhub.yml index 65a5c99..7a9a666 100644 --- a/.github/workflows/dockerhub.yml +++ b/.github/workflows/dockerhub.yml | |||
@@ -41,4 +41,4 @@ jobs: | |||
41 | with: | 41 | with: |
42 | push: true | 42 | push: true |
43 | tags: b4bz/homer:${{env.IMAGE_TAG}} | 43 | tags: b4bz/homer:${{env.IMAGE_TAG}} |
44 | platforms: linux/amd64,linux/arm/v7,linux/arm64 \ No newline at end of file | 44 | platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 \ No newline at end of file |
@@ -89,6 +89,10 @@ Install example configuration file & assets (favicons, ...) to help you get star | |||
89 | * **`SUBFOLDER`** (default: `null`) | 89 | * **`SUBFOLDER`** (default: `null`) |
90 | If you would like to host Homer in a subfolder, (ex: *http://my-domain/**homer***), set this to the subfolder path (ex `/homer`). | 90 | If you would like to host Homer in a subfolder, (ex: *http://my-domain/**homer***), set this to the subfolder path (ex `/homer`). |
91 | 91 | ||
92 | * **`PORT`** (default: `8080`) | ||
93 | If you would like to change internal port of Homer from default `8080` to your port choice. | ||
94 | |||
95 | |||
92 | #### With docker-compose | 96 | #### With docker-compose |
93 | 97 | ||
94 | A [`docker-compose.yml`](docker-compose.yml) file is available as an example. It must be edited to match your needs. You probably want to adjust the port mapping and volume binding (equivalent to `-p` and `-v` arguments). | 98 | A [`docker-compose.yml`](docker-compose.yml) file is available as an example. It must be edited to match your needs. You probably want to adjust the port mapping and volume binding (equivalent to `-p` and `-v` arguments). |
diff --git a/vite.config.js b/vite.config.js index cee8727..f08041d 100644 --- a/vite.config.js +++ b/vite.config.js | |||
@@ -34,6 +34,9 @@ export default defineConfig({ | |||
34 | }, | 34 | }, |
35 | ], | 35 | ], |
36 | }, | 36 | }, |
37 | workbox: { | ||
38 | navigateFallback: null, | ||
39 | }, | ||
37 | }), | 40 | }), |
38 | ], | 41 | ], |
39 | resolve: { | 42 | resolve: { |