鍍金池/ 問(wèn)答/Linux  HTML/ 生產(chǎn)模式下仍然提示“開(kāi)發(fā)模式”

生產(chǎn)模式下仍然提示“開(kāi)發(fā)模式”

問(wèn)題描述

在 webpack.config.js 里加上 vue: 'vue/dist/vue.js' 后,npm run build 仍然會(huì)出現(xiàn):

You are running Vue in development mode.
Make sure to turn on production mode when deploying for production.
See more tips at https://vuejs.org/guide/deployment.html

把這句去除后就提示

[Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build.

webpack.config.js 代碼

const resolve = require('path').resolve
const webpack = require('webpack')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const url = require('url')
const publicPath = ''

module.exports = (options = {}) => ({
  entry: {
    vendor: './src/vendor',
    index: './src/main.js'
  },
  output: {
    path: resolve(__dirname, 'dist'),
    filename: options.dev ? '[name].js' : '[name].js?[chunkhash]',
    chunkFilename: '[id].js?[chunkhash]',
    publicPath: options.dev ? '/assets/' : publicPath
  },
  module: {
    rules: [{
        test: /\.vue$/,
        use: ['vue-loader']
      },
      {
        test: /\.js$/,
        use: ['babel-loader'],
        exclude: /node_modules/
      },
      {
        test: /\.css$/,
        use: ['style-loader', 'css-loader', 'postcss-loader']
      },
      {
        test: /\.(png|jpg|jpeg|gif|eot|ttf|woff|woff2|svg|svgz)(\?.+)?$/,
        use: [{
          loader: 'url-loader',
          options: {
            limit: 10000
          }
        }]
      }
    ]
  },
  plugins: [
    new webpack.optimize.CommonsChunkPlugin({
      names: ['vendor', 'manifest']
    }),
    new HtmlWebpackPlugin({
      template: 'src/index.html'
    })
  ],
  resolve: {
    alias: {
      '~': resolve(__dirname, 'src'),
      vue: 'vue/dist/vue.js',
    },
    extensions: ['.js', '.vue', '.json', '.css']
  },
  devServer: {
    host: '127.0.0.1',
    port: 8010,
    proxy: {
      '/api/': {
        target: 'http://127.0.0.1:8080',
        changeOrigin: true,
        pathRewrite: {
          '^/api': ''
        }
      }
    },
    historyApiFallback: {
      index: url.parse(options.dev ? '/assets/' : publicPath).pathname
    }
  },
  devtool: options.dev ? '#eval-source-map' : '#source-map'
})

求解

回答
編輯回答
情已空

有一個(gè)建議哈,第一呢,可以用老版本的 vue-cli 來(lái)創(chuàng)建項(xiàng)目,它會(huì)自定給你分環(huán)境配置 webpack.config 文件,有 base production dev 等

然后再配置文件里面可以定義:(我猜你用的還不是 webpack4)

new webpack.DefinePlugin({
      'process.env.NODE_ENV': JSON.stringify('production')
    })

如果是 4 的話:配置 mode

module.exports = {
  mode: 'production'
}
2018年2月1日 00:45