Added .env access to frontend (+ while dockerized)

This commit is contained in:
Florian Sylvain
2022-12-21 22:37:47 +01:00
parent 4d4116ae98
commit 2047b3f7a4
8 changed files with 37 additions and 23 deletions
+16 -9
View File
@@ -1,14 +1,21 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import { defineConfig, loadEnv } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
export default defineConfig(({command, mode}) => {
return {
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
define: {
__APP_ENV__: {
...loadEnv(mode, "./../../", ""), // when running directly | access .env from ./web/admin-gui/
...loadEnv(mode, process.cwd(), ""), // when running from docker
}
}
}
})