2954e7ea66
If `global` is used and handlebars is compiled for browser usage without a Node.js `global` polyfill, handlebars fails with a `global is undefined` error. Fixes #1593
7 lines
104 B
JavaScript
7 lines
104 B
JavaScript
module.exports = {
|
|
env: {
|
|
// Handlebars should run natively in the browser
|
|
node: false
|
|
}
|
|
};
|