Compare commits
2 Commits
ec16d40361
...
ae95015f55
Author | SHA1 | Date |
---|---|---|
Lukáš Kucharczyk | ae95015f55 | |
Lukáš Kucharczyk | c217fd30ef |
|
@ -25,9 +25,7 @@ steps:
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
settings:
|
settings:
|
||||||
repo: registry.kucharczyk.xyz/timetracker
|
repo: registry.kucharczyk.xyz/timetracker
|
||||||
tags:
|
auto_tag: true
|
||||||
- ${DRONE_COMMIT_REF}
|
|
||||||
- ${DRONE_COMMIT_BRANCH}
|
|
||||||
when:
|
when:
|
||||||
branch:
|
branch:
|
||||||
exclude:
|
exclude:
|
||||||
|
|
|
@ -1,7 +1,12 @@
|
||||||
import { defineConfig } from 'vite'
|
import { defineConfig } from "vite";
|
||||||
import react from '@vitejs/plugin-react'
|
import react from "@vitejs/plugin-react";
|
||||||
|
|
||||||
// https://vitejs.dev/config/
|
// https://vitejs.dev/config/
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
plugins: [react()],
|
plugins: [react()],
|
||||||
})
|
server: {
|
||||||
|
proxy: {
|
||||||
|
"/": "http://localhost:8001",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
Loading…
Reference in New Issue