Some checks are pending
Extracted from oil project — business logic removed, auth/db/deploy infrastructure generalized with APP_NAME placeholders. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
296 B
JavaScript
19 lines
296 B
JavaScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
server: {
|
|
proxy: {
|
|
'/api': 'http://localhost:8000',
|
|
}
|
|
},
|
|
build: {
|
|
outDir: 'dist'
|
|
},
|
|
test: {
|
|
environment: 'jsdom',
|
|
globals: true,
|
|
}
|
|
})
|