美文网首页
vue 打包内存溢出

vue 打包内存溢出

作者: Mylovesunshine | 来源:发表于2022-09-22 14:14 被阅读0次

    package.json修改
    "build": "node --max_old_space_size=8092 build/build.js"

    "scripts": {
    "dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
    "start": "npm run dev",
    "unit": "jest --config test/unit/jest.conf.js --coverage",
    "e2e": "node test/e2e/runner.js",
    "test": "npm run unit && npm run e2e",
    "lint": "eslint --ext .js,.vue src test/unit test/e2e/specs",
    "build": "node --max_old_space_size=8092 build/build.js"
    },

    相关文章

      网友评论

          本文标题:vue 打包内存溢出

          本文链接:https://www.haomeiwen.com/subject/mamwortx.html