mirror of
https://github.com/haexhub/haex-hub.git
synced 2025-12-16 14:10:52 +01:00
- Remove commented-out code in Rust and TypeScript files - Remove unused npm dependencies (@tauri-apps/plugin-http, @tauri-apps/plugin-sql, fuse.js) - Remove commented imports in nuxt.config.ts - Remove commented dependencies in Cargo.toml
138 lines
2.7 KiB
TypeScript
138 lines
2.7 KiB
TypeScript
import { fileURLToPath } from 'node:url'
|
|
|
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
|
|
srcDir: './src',
|
|
|
|
alias: {
|
|
'@bindings': fileURLToPath(
|
|
new URL('./src-tauri/bindings', import.meta.url),
|
|
),
|
|
},
|
|
|
|
app: {
|
|
head: {
|
|
viewport: 'width=device-width, initial-scale=1.0, viewport-fit=cover',
|
|
},
|
|
pageTransition: {
|
|
name: 'fade',
|
|
},
|
|
},
|
|
|
|
modules: [
|
|
'nuxt-zod-i18n',
|
|
'@nuxtjs/i18n',
|
|
'@pinia/nuxt',
|
|
'@vueuse/nuxt',
|
|
'@nuxt/icon',
|
|
'@nuxt/eslint',
|
|
'@nuxt/fonts',
|
|
'@nuxt/ui',
|
|
],
|
|
|
|
imports: {
|
|
dirs: [
|
|
'composables/**',
|
|
'stores/**',
|
|
'components/**',
|
|
'pages/**',
|
|
'types/**',
|
|
],
|
|
presets: [
|
|
{
|
|
from: '@vueuse/gesture',
|
|
imports: [
|
|
'useDrag',
|
|
'useGesture',
|
|
'useHover',
|
|
'useMove',
|
|
'usePinch',
|
|
'useScroll',
|
|
'useWheel',
|
|
],
|
|
},
|
|
],
|
|
},
|
|
|
|
css: ['./assets/css/main.css'],
|
|
|
|
icon: {
|
|
provider: 'server',
|
|
mode: 'svg',
|
|
clientBundle: {
|
|
icons: ['solar:global-outline', 'gg:extension', 'hugeicons:corporate'],
|
|
scan: true,
|
|
includeCustomCollections: true,
|
|
},
|
|
serverBundle: {
|
|
collections: ['mdi', 'line-md', 'solar', 'gg', 'emojione'],
|
|
},
|
|
|
|
customCollections: [
|
|
{
|
|
prefix: 'my-icon',
|
|
dir: './src/assets/icons/',
|
|
},
|
|
],
|
|
},
|
|
|
|
i18n: {
|
|
strategy: 'prefix_and_default',
|
|
defaultLocale: 'de',
|
|
|
|
locales: [
|
|
{ code: 'de', language: 'de-DE', isCatchallLocale: true },
|
|
{ code: 'en', language: 'en-EN' },
|
|
],
|
|
|
|
detectBrowserLanguage: {
|
|
useCookie: true,
|
|
cookieKey: 'i18n_redirected',
|
|
redirectOn: 'root', // recommended
|
|
},
|
|
types: 'composition',
|
|
|
|
vueI18n: './i18n.config.ts',
|
|
},
|
|
|
|
zodI18n: {
|
|
localeCodesMapping: {
|
|
'en-GB': 'en',
|
|
'de-DE': 'de',
|
|
},
|
|
},
|
|
|
|
runtimeConfig: {
|
|
public: {
|
|
haexVault: {
|
|
deviceFileName: 'device.json',
|
|
defaultVaultName: 'HaexHub',
|
|
},
|
|
},
|
|
},
|
|
|
|
ssr: false,
|
|
// Enables the development server to be discoverable by other devices when running on iOS physical devices
|
|
devServer: {
|
|
host: '0',
|
|
port: 3003,
|
|
},
|
|
|
|
vite: {
|
|
// Better support for Tauri CLI output
|
|
clearScreen: false,
|
|
// Enable environment variables
|
|
// Additional environment variables can be found at
|
|
// https://v2.tauri.app/reference/environment-variables/
|
|
envPrefix: ['VITE_', 'TAURI_'],
|
|
server: {
|
|
// Tauri requires a consistent port
|
|
strictPort: true,
|
|
},
|
|
},
|
|
ignore: ['**/src-tauri/**'],
|
|
})
|