我想导入一个模板,用于发送带有Meteor APP电子邮件包的邮件,但是我收到了错误Can not found module email.html
。我的相对路径是正确的。
我的 /imports/startup/server/smtp.js
import { email } from '../../ui/email/email.html';
// sendEmail function
此文件smtp.js
已导入/server/main.js
。
你知道为什么我有这个错误吗? 谢谢!
答案 0 :(得分:0)
如果您是importa html文件,请尝试使用
import'../../ ui / email / email.html';
与inicial tutorial中的视图一样。