Closed stursby closed 4 months ago
I have the following command to compile the .vue emails into HTML, however the baseUrl is gone after exporting.
.vue
HTML
baseUrl
Here's the relevant parts of each component
<EImg src="/images/logo.png" width="100" height="33" alt="logo" :style="logo" />
// Email vueEmail: { baseUrl: 'https://example.com' }
{ "scripts": { "email": "bunx vue-email export --dir emails --out supabase/templates --pretty" } }
When previewing the Email w/ Nuxt Dev Tools, the Image URL works great:
However, after I run the build command, the baseUrl is omitted:
Any help would be much appreciated!!
PS -- What I eventually would like to do is set the baseUrl to an ENV variable to so it works both locally and in production!
// Email vueEmail: { baseUrl: process.env.BASE_URL, }
Thanks for the awesome library BTW! 💯
we just merged a new project rewrite, please do check the docs and the updated logic https://vuemail.net/
I have the following command to compile the
.vue
emails intoHTML
, however thebaseUrl
is gone after exporting.Here's the relevant parts of each component
Email
Nuxt Config
package.json
When previewing the Email w/ Nuxt Dev Tools, the Image URL works great:
However, after I run the build command, the
baseUrl
is omitted:Any help would be much appreciated!!
PS -- What I eventually would like to do is set the
baseUrl
to an ENV variable to so it works both locally and in production!Thanks for the awesome library BTW! 💯