arctic-species-portal/vite.config.ts
Magnus Smari Smarason ad12e11ed5
Some checks failed
Deploy to GitHub Pages / build (push) Failing after 44s
Deploy to GitHub Pages / deploy (push) Has been skipped
hotfix
2025-05-17 22:19:06 +00:00

14 lines
305 B
TypeScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import path from 'path';
// https://vitejs.dev/config/
export default defineConfig({
base: '/Arctic_portal_temp/',
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
});