You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/v2/guide/deployment.md
+23
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,29 @@ module.exports = {
61
61
)
62
62
.bundle()
63
63
```
64
+
65
+
- Or, using [envify](https://github.com/hughsk/envify) with Grunt and [grunt-browserify](https://github.com/jmreidy/grunt-browserify):
66
+
67
+
```js
68
+
// Use the envify custom module to specify environment variables
69
+
var envify =require('envify/custom')
70
+
71
+
browserify: {
72
+
dist: {
73
+
options: {
74
+
// Function to deviate from grunt-browserify's default order
75
+
configure:b=> b
76
+
.transform('vueify')
77
+
.transform(
78
+
// Required in order to process node_modules files
0 commit comments