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

  • 相关阅读:
    设计模式之桥接模式
    设计模式之适配器模式
    设计模式之代理模式
    设计模式之建造者模式
    设计模式之抽象工厂模式
    设计模式之工厂方法模式
    设计模式之简单工厂模式
    设计模式之原型模式
    api接口测试的步骤
    3种优化回归测试的方法
  • 原文地址:https://www.cnblogs.com/linkenpark/p/10387115.html
Copyright © 2011-2022 走看看