diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 5156520e..67a4cc20 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -1,9 +1,4 @@ name: Playwright Tests -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] jobs: test: timeout-minutes: 60 diff --git a/index.html b/index.html index 4a2a8fa8..f825a8b5 100644 --- a/index.html +++ b/index.html @@ -2,7 +2,7 @@ - + @@ -12,6 +12,7 @@ + CAUSW diff --git a/netlify.toml b/netlify.toml index 515637dc..ff1c0508 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,8 +1,3 @@ -[[redirects]] - from = "/api/*" - to = "http://13.209.181.162:8080" - status = 200 - [[redirects]] from = "/*" to = "/index.html" diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png new file mode 100644 index 00000000..f7dabd4e Binary files /dev/null and b/public/favicon-16x16.png differ diff --git a/public/favicon-96x96.png b/public/favicon-96x96.png new file mode 100644 index 00000000..15a33b36 Binary files /dev/null and b/public/favicon-96x96.png differ diff --git a/src/configs/axios.ts b/src/configs/axios.ts index e11e6566..fff78587 100644 --- a/src/configs/axios.ts +++ b/src/configs/axios.ts @@ -4,8 +4,8 @@ import { PAGE_URL } from './path'; export const API = axios.create({ baseURL: - process.env.NODE_ENV !== 'development' - ? import.meta.env.VITE_MAIN_SERVER_URL + process.env.NODE_ENV === 'production' + ? import.meta.env.VITE_PROD_SERVER_URL : import.meta.env.VITE_DEV_SERVER_URL, });