Skip to content

Commit

Permalink
Wrong namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
yanfali committed Jan 20, 2022
1 parent 0a1d7da commit d0c2d36
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ yarn install

### Compiles and hot-reloads for development
```
yarn run serve
yarn run dev
```

### Compiles and minifies for production
Expand Down Expand Up @@ -66,7 +66,7 @@ yarn run test:unit
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
See [Configuration Reference](https://vitejs.dev/config/).

## Docker

Expand All @@ -76,7 +76,7 @@ If you don't have a webserver already and don't already have one in mind you can

You can specify a different backend URL by setting `VUE_APP_API_URL`:

docker run -e VUE_APP_API_URL=http://localhost:8080 -p 8080:80 qmkfm/qmk_configurator:latest
docker run -e VITE_API_URL=http://localhost:8080 -p 8080:80 qmkfm/qmk_configurator:latest

If you'd like to develop locally you can use a volume to tie your local filesystem to the container:

Expand Down
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export default {
},
data() {
return {
revision: import.meta.VITE_TRAVIS_COMMIT || 'dev',
revision: import.meta.env.VITE_TRAVIS_COMMIT || 'dev',
potatoFact: 'QMK for potatoes',
interval: 120000,
destroyWatcher: undefined,
Expand Down

0 comments on commit d0c2d36

Please sign in to comment.