TODO: change api.conf URL references to use environment variables and add these variables to the docker-compose configuration for host domain
17 lines
331 B
JavaScript
17 lines
331 B
JavaScript
import { fileURLToPath, URL } from 'node:url'
|
|
|
|
const path = require('path')
|
|
|
|
import { defineConfig } 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)),
|
|
}
|
|
}
|
|
})
|