Compare commits

..

No commits in common. "f4a2e8cbf9a4e4eed6eba91c84b65303365db795" and "7f1986e765ebee9f850a198ba96cafeaddfec9b7" have entirely different histories.

3 changed files with 7 additions and 7 deletions

View File

@ -27,7 +27,6 @@ const whenExternalScripts = (items = []) =>
export default defineConfig({
output: 'server',
compressHTML: true,
build: {
assets: 'assets',
@ -38,6 +37,7 @@ export default defineConfig({
port: 3000
},
trailingSlash: 'never',
output: 'server',
adapter: node({
mode: 'standalone'
}),

View File

@ -1,6 +1,6 @@
site:
name: EpicRoadTrip
site: 'https://front-tweb.cb85.fr'
name: AstroWind
site: 'https://astrowind.vercel.app'
base: '/'
trailingSlash: false

6
front/src/env.d.ts vendored
View File

@ -6,10 +6,10 @@
import PocketBase from 'pocketbase'
export interface ImportMetaEnv {
NODE_ENV: string
APP_URL: string
NODE_ENV: string
APP_URL: string
POCKETBASE_URL: string
POCKETBASE_URL: string
GOOGLE_API_KEY: string
}