I’m using the text plugin of RequireJS. Is it possible to reference a text file in the path configuration file? I’ve tried
require.config({
paths: {
'myTemplate': 'text!templates/myTemplate.html'
}
});
but that didn’t work.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The reason it isn’t working is because RequireJS plugins are designed to be used as part of a require command, not in the config.
Try:
and in your module: