Guest User

Untitled

a guest
Dec 10th, 2017
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. const path = require("path")
  2.  
  3. module.exports = {
  4. "build": {
  5. "env": require("./env_prod"),
  6. "index": path.join(__dirname, "app", "", "index.html"),
  7. "assetsRoot": path.join(__dirname, "app", ""),
  8. "assetsSubDirectory": "static",
  9. "assetsPublicPath": "",
  10. "productionSourceMap": true,
  11. "productionGzipExtensions": ["js", "css"],
  12.  
  13. },
  14. "dev": {
  15. "env": require("./env_dev"),
  16. "port": 3000,
  17. "autoOpenBrowser": false,
  18. "assetsSubDirectory": "static",
  19. "assetsPublicPath": "/",
  20. "cssSourceMap": false
  21. }
  22. }
Add Comment
Please, Sign In to add comment