mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-19 06:01:24 +02:00
- Add vCard/CSV file import with duplicate detection and merge options - Add Google Contacts OAuth2 integration for importing from Google - Add vCard/CSV export with format selection and filtering options - Add connected_accounts table for OAuth token storage - Add FileUploader, ImportPreview, GoogleImport components - Add ExportModal with format selection (vCard/CSV) - Add i18n translations for import/export (DE/EN)
45 lines
1.1 KiB
TypeScript
45 lines
1.1 KiB
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [tailwindcss(), sveltekit()],
|
|
server: {
|
|
port: 5187,
|
|
strictPort: true,
|
|
},
|
|
ssr: {
|
|
noExternal: [
|
|
'@clock/shared',
|
|
'@manacore/shared-icons',
|
|
'@manacore/shared-ui',
|
|
'@manacore/shared-tailwind',
|
|
'@manacore/shared-theme',
|
|
'@manacore/shared-theme-ui',
|
|
'@manacore/shared-feedback-ui',
|
|
'@manacore/shared-feedback-service',
|
|
'@manacore/shared-feedback-types',
|
|
'@manacore/shared-auth',
|
|
'@manacore/shared-auth-ui',
|
|
'@manacore/shared-branding',
|
|
'@manacore/shared-subscription-ui',
|
|
],
|
|
},
|
|
optimizeDeps: {
|
|
exclude: [
|
|
'@clock/shared',
|
|
'@manacore/shared-icons',
|
|
'@manacore/shared-ui',
|
|
'@manacore/shared-tailwind',
|
|
'@manacore/shared-theme',
|
|
'@manacore/shared-theme-ui',
|
|
'@manacore/shared-feedback-ui',
|
|
'@manacore/shared-feedback-service',
|
|
'@manacore/shared-feedback-types',
|
|
'@manacore/shared-auth',
|
|
'@manacore/shared-auth-ui',
|
|
'@manacore/shared-branding',
|
|
'@manacore/shared-subscription-ui',
|
|
],
|
|
},
|
|
});
|