Skip to content

Commit

Permalink
feat(app): fixed form api endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
botprzemek committed May 6, 2024
1 parent 2293218 commit acbf85d
Show file tree
Hide file tree
Showing 4 changed files with 1,399 additions and 734 deletions.
6 changes: 3 additions & 3 deletions app/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default defineNuxtConfig({
dirs: ["types"],
},
runtimeConfig: {
mailUlrl: "",
mailUrl: "",
public: {
name: "Knury Knurów",
version: "1.0.0",
Expand All @@ -23,7 +23,7 @@ export default defineNuxtConfig({
"@vite-pwa/nuxt",
],
i18n: {
baseUrl: process.env.APP_URL || "http://localhost:3000/",
baseUrl: process.env.NUXT_APP_URL || "http://localhost:3000/",
strategy: "no_prefix",
defaultLocale: "en",
detectBrowserLanguage: {
Expand All @@ -39,7 +39,7 @@ export default defineNuxtConfig({
],
},
site: {
url: process.env.APP_URL || "http://localhost:3000/",
url: process.env.NUXT_APP_URL || "http://localhost:3000/",
},
app: {
baseURL: "/",
Expand Down
Loading

0 comments on commit acbf85d

Please # to comment.