mirror of
https://github.com/Floriansylvain/RenewCMS.git
synced 2026-08-19 19:53:21 +02:00
22 lines
548 B
TypeScript
22 lines
548 B
TypeScript
import { fileURLToPath, URL } from 'node:url'
|
|
import { defineConfig, loadEnv } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
// https://vitejs.dev/config/
|
|
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
|
|
}
|
|
}
|
|
}
|
|
})
|