zoukankan      html  css  js  c++  java
  • npm run dev--The 'mode' option has not been set, webpack will fallback to 'production' for this value

    npm run dev时报警告:

    warning

    configuration
    The 'mode' option has not been set, webpack will fallback to 'production' for this value. Set 'mode' option to 'development' or 'production' to enable defaults for each environment.
    You can also set it to 'none' to disable any default behavior. Learn more: https://webpack.js.org/concepts/mode/

    升级webpack4.0后,打包报如下错误:

    WARNING in configuration
    The 'mode' option has not been set, webpack will fallback to 'production' for thisvalue. Set 'mode' option to 'development' or 'production' to enable defaults for each environment.
    You can also set it to 'none' to disable any default behavior. Learn more: https://webpack.js.org/concepts/mode/

    webpack官网更新日志有说明:webpack升级4.0新增mode属性
    1
    解决方法:
    1.package.json中设置:

    "scripts": {
        "dev": "webpack --mode development", // 开发环境
        "build": "webpack --mode production", // 生产环境
    },



    2.webpack.config.js中设置:

    module.exports = {
        entry: './src/app.js',
        output: {
            path: path.resolve(__dirname, 'dist'),
            filename: 'main.js'
        },
        mode: 'development' // 设置mode
    }



    下载指定webpack指定版本:

    npm i -D webpack@3 // 3: webpack版本3最新   npm install -S webpack@3.6.0

  • 相关阅读:
    模拟Linux修改实际、有效和保存设置标识
    ubuntu中桌面图标的配置
    硬盘安装ubuntu
    关于NumPy
    关于Spring JavaWeb工程中的ContextRefreshedEvent事件
    MySQL中Index Merge简介
    InetlliJ IDEA的快捷键及各种配置
    Java语言中的正则表达式
    Git使用笔记
    linux中添加常用应用程序的桌面图标
  • 原文地址:https://www.cnblogs.com/linkenpark/p/10387115.html
Copyright © 2011-2022 走看看