mirror of
https://github.com/domfelipe/clima-cuida-care-weather.git
synced 2026-08-07 03:36:42 +00:00
11 lines
280 B
TypeScript
11 lines
280 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
export default defineConfig(({ command }) => ({
|
|
base: command === 'build' ? '/clima-cuida-care-weather/' : '/',
|
|
plugins: [react()],
|
|
test: {
|
|
environment: 'node',
|
|
globals: true,
|
|
},
|
|
}));
|