Compare commits

...

2 Commits

Author SHA1 Message Date
e71a6987fc 0.55.1 2026-07-21 05:14:34 +02:00
938878d860 Fixed email component import path. 2026-07-21 05:14:32 +02:00
3 changed files with 5 additions and 5 deletions

4
package-lock.json generated
View File

@@ -1,11 +1,11 @@
{
"name": "traxxx-web",
"version": "0.55.0",
"version": "0.55.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"version": "0.55.0",
"version": "0.55.1",
"dependencies": {
"@brillout/json-serializer": "^0.5.25",
"@dicebear/collection": "7.0.5",

View File

@@ -91,7 +91,7 @@
"overrides": {
"vite": "$vite"
},
"version": "0.55.0",
"version": "0.55.1",
"imports": {
"#/*": "./*.js"
},

View File

@@ -1,10 +1,10 @@
import { readdirSync } from 'node:fs';
import path from 'node:path';
import { fileURLToPath } from 'node:url';
import process from 'node:process';
import { config as configureEmailTemplates } from '@vue-email/compiler';
export const emailsDir = path.join(path.dirname(fileURLToPath(import.meta.url)), '../components/emails');
export const emailsDir = path.join(process.cwd(), 'components/emails');
export const emailTemplates = configureEmailTemplates(emailsDir, { verbose: false });