Compare commits

..

No commits in common. "ae95015f55f4e0f62c78b2076cf2be0e1300a7a9" and "ec16d40361b4d2c43a92025f590a38c3d3f76cbb" have entirely different histories.

2 changed files with 6 additions and 9 deletions

View File

@ -25,7 +25,9 @@ steps:
image: plugins/docker image: plugins/docker
settings: settings:
repo: registry.kucharczyk.xyz/timetracker repo: registry.kucharczyk.xyz/timetracker
auto_tag: true tags:
- ${DRONE_COMMIT_REF}
- ${DRONE_COMMIT_BRANCH}
when: when:
branch: branch:
exclude: exclude:

View File

@ -1,12 +1,7 @@
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",
},
},
});