[PIE-6] Add first (non-final) (temporary-ish) stylings #5

Merged
breadone merged 12 commits from PIE-6 into main 2025-08-12 23:39:33 +12:00
2 changed files with 12 additions and 2 deletions
Showing only changes of commit f51b811b55 - Show all commits

View File

@ -14,6 +14,15 @@ export default defineConfig({
}),
vite: {
plugins: [tailwindcss()]
plugins: [tailwindcss()],
server: {
proxy: {
'/api': {
target: 'http://localhost:8080',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, '/api'),
},
}
}
}
});

View File

@ -1,4 +1,5 @@
import Pocketbase from "pocketbase"
export const client = new Pocketbase(import.meta.env.PUBLIC_PB_URL)
const client = new Pocketbase(import.meta.env.PUBLIC_URL)
export default client;
// export const client = new Pocketbase("http://localhost:8080")