@@ -19,9 +19,6 @@
|
|||||||
"@probo/react-lazy": "1.0.0",
|
"@probo/react-lazy": "1.0.0",
|
||||||
"@probo/ui": "1.0.0",
|
"@probo/ui": "1.0.0",
|
||||||
"@probo/vendors": "0.0.1",
|
"@probo/vendors": "0.0.1",
|
||||||
"@radix-ui/react-dialog": "^1.1.14",
|
|
||||||
"@radix-ui/react-label": "^2.1.7",
|
|
||||||
"@radix-ui/react-select": "^2.2.5",
|
|
||||||
"@tanstack/react-query": "^5.76.1",
|
"@tanstack/react-query": "^5.76.1",
|
||||||
"clsx": "^2.1.1",
|
"clsx": "^2.1.1",
|
||||||
"minisearch": "^7.1.2",
|
"minisearch": "^7.1.2",
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
import { StrictMode } from "react";
|
|
||||||
import { createRoot } from "react-dom/client";
|
import { createRoot } from "react-dom/client";
|
||||||
import "./index.css";
|
import "./index.css";
|
||||||
import { App } from "./App";
|
import { App } from "./App";
|
||||||
@@ -15,13 +14,11 @@ const queryClient = new QueryClient({
|
|||||||
});
|
});
|
||||||
|
|
||||||
createRoot(document.getElementById("root")!).render(
|
createRoot(document.getElementById("root")!).render(
|
||||||
<StrictMode>
|
<QueryClientProvider client={queryClient}>
|
||||||
<QueryClientProvider client={queryClient}>
|
<RelayProvider>
|
||||||
<RelayProvider>
|
<TranslatorProvider>
|
||||||
<TranslatorProvider>
|
<App />
|
||||||
<App />
|
</TranslatorProvider>
|
||||||
</TranslatorProvider>
|
</RelayProvider>
|
||||||
</RelayProvider>
|
</QueryClientProvider>,
|
||||||
</QueryClientProvider>
|
|
||||||
</StrictMode>
|
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -8,6 +8,10 @@ export default defineConfig({
|
|||||||
plugins: [react({ babel: { plugins: ["relay"] } }), tailwindcss()],
|
plugins: [react({ babel: { plugins: ["relay"] } }), tailwindcss()],
|
||||||
server: {
|
server: {
|
||||||
proxy: {
|
proxy: {
|
||||||
|
"/connect": {
|
||||||
|
target: "http://localhost:8080",
|
||||||
|
changeOrigin: true,
|
||||||
|
},
|
||||||
"/api": {
|
"/api": {
|
||||||
target: "http://localhost:8080",
|
target: "http://localhost:8080",
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
@@ -18,7 +22,7 @@ export default defineConfig({
|
|||||||
alias: {
|
alias: {
|
||||||
"/type": fileURLToPath(new URL("./src/type.ts", import.meta.url)),
|
"/type": fileURLToPath(new URL("./src/type.ts", import.meta.url)),
|
||||||
"/components": fileURLToPath(
|
"/components": fileURLToPath(
|
||||||
new URL("./src/components", import.meta.url)
|
new URL("./src/components", import.meta.url),
|
||||||
),
|
),
|
||||||
"/hooks": fileURLToPath(new URL("./src/hooks", import.meta.url)),
|
"/hooks": fileURLToPath(new URL("./src/hooks", import.meta.url)),
|
||||||
"/layouts": fileURLToPath(new URL("./src/layouts", import.meta.url)),
|
"/layouts": fileURLToPath(new URL("./src/layouts", import.meta.url)),
|
||||||
|
|||||||
12
cfg/dev.yaml
12
cfg/dev.yaml
@@ -13,6 +13,10 @@ probod:
|
|||||||
encryption-key: "thisisnotasecretAAAAAAAAAAAAAAAAAAAAAAAAAAA="
|
encryption-key: "thisisnotasecretAAAAAAAAAAAAAAAAAAAAAAAAAAA="
|
||||||
chrome-dp-addr: "localhost:9222"
|
chrome-dp-addr: "localhost:9222"
|
||||||
|
|
||||||
|
trust-center:
|
||||||
|
http-addr: ":8085"
|
||||||
|
https-addr: ":8443"
|
||||||
|
|
||||||
api:
|
api:
|
||||||
addr: "localhost:8080"
|
addr: "localhost:8080"
|
||||||
cors:
|
cors:
|
||||||
@@ -97,3 +101,11 @@ probod:
|
|||||||
- "incoming-webhook"
|
- "incoming-webhook"
|
||||||
settings:
|
settings:
|
||||||
signing-secret: "this-is-not-a-secret-for-slack-signing"
|
signing-secret: "this-is-not-a-secret-for-slack-signing"
|
||||||
|
|
||||||
|
custom-domains:
|
||||||
|
renewal-interval: 3600
|
||||||
|
provision-interval: 30
|
||||||
|
acme:
|
||||||
|
directory: "https://localhost:14000/dir"
|
||||||
|
email: "bryan@getprobo.com"
|
||||||
|
key-type: "EC256"
|
||||||
|
|||||||
@@ -15,12 +15,13 @@
|
|||||||
"@ariakit/react": "^0.4.17",
|
"@ariakit/react": "^0.4.17",
|
||||||
"@probo/helpers": "1.0.0",
|
"@probo/helpers": "1.0.0",
|
||||||
"@probo/i18n": "1.0.0",
|
"@probo/i18n": "1.0.0",
|
||||||
"@radix-ui/react-alert-dialog": "^1.1.14",
|
"@radix-ui/react-alert-dialog": "^1.1.15",
|
||||||
"@radix-ui/react-dropdown-menu": "^2.1.14",
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
||||||
"@radix-ui/react-portal": "^1.1.9",
|
"@radix-ui/react-portal": "^1.1.10",
|
||||||
"@radix-ui/react-scroll-area": "^1.2.9",
|
"@radix-ui/react-label":"^2.1.8",
|
||||||
"@radix-ui/react-tabs": "^1.1.12",
|
"@radix-ui/react-scroll-area": "^1.2.10",
|
||||||
"@tailwindcss/vite": "^4.1.7",
|
"@radix-ui/react-tabs": "^1.1.13",
|
||||||
|
"@radix-ui/react-select": "^2.2.6",
|
||||||
"clsx": "^2.1.1",
|
"clsx": "^2.1.1",
|
||||||
"react-dropzone": "^14.3.8",
|
"react-dropzone": "^14.3.8",
|
||||||
"react-intersection-observer": "^9.16.0",
|
"react-intersection-observer": "^9.16.0",
|
||||||
@@ -33,6 +34,7 @@
|
|||||||
"zustand": "^5.0.4"
|
"zustand": "^5.0.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@tailwindcss/vite": "^4.1.17",
|
||||||
"@chromatic-com/storybook": "^3.2.6",
|
"@chromatic-com/storybook": "^3.2.6",
|
||||||
"@eslint/js": "^9.25.0",
|
"@eslint/js": "^9.25.0",
|
||||||
"@probo/prettier": "1.0.0",
|
"@probo/prettier": "1.0.0",
|
||||||
@@ -75,5 +77,8 @@
|
|||||||
"extends": [
|
"extends": [
|
||||||
"plugin:storybook/recommended"
|
"plugin:storybook/recommended"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"volta": {
|
||||||
|
"node": "24.4.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user