【问题标题】:Cannot GET / in simple vue setup无法在简单的 vue 设置中获取 /
【发布时间】:2017-10-31 05:48:41
【问题描述】:

所以我尝试建立一个简单的 vue 项目。 Webpack 可以编译,但不能提供主页。这是回购:

https://github.com/kenpeter/auto_complete_vue

npm run dev

我得到的错误是

Cannot GET /

基于此模板:

https://github.com/vuejs-templates/webpack-simple

【问题讨论】:

  • 在下面查看我的答案。我注释掉 publicPath,它可以工作,但我不知道为什么。你有什么想法吗?

标签: webpack vue.js


【解决方案1】:

//publicPath: '/dist/', 我注释掉了publicPath,它现在可以工作了,但我不知道为什么。

也许有人可以解释一下?

// path
var path = require('path')
// webpack
var webpack = require('webpack')

// html plugin class
const HtmlWebpackPlugin = require('html-webpack-plugin')

// html plugin instance
const HtmlWebpackPluginConfig = new HtmlWebpackPlugin({
  // client has template
  template: './client/index.html',
  // out is index html
  filename: 'index.html',
  // inject body
  inject: 'body'
})

module.exports = {
  // Input
  entry: './client/index.js',
  // Output
  output: {
    path: path.resolve(__dirname, './dist'),
    //publicPath: '/dist/',
    filename: 'build.js'
  },
  module: {
    rules: [
      {
        test: /\.vue$/,
        loader: 'vue-loader',
        options: {
          loaders: {
            // Since sass-loader (weirdly) has SCSS as its default parse mode, we map
            // the "scss" and "sass" values for the lang attribute to the right configs here.
            // other preprocessors should work out of the box, no loader config like this necessary.
            'scss': 'vue-style-loader!css-loader!sass-loader',
            'sass': 'vue-style-loader!css-loader!sass-loader?indentedSyntax'
          }
          // other vue-loader options go here
        }
      },
      {
        // babel
        test: /\.js$/,
        loader: 'babel-loader',
        exclude: /node_modules/
      },
      {
        // img
        test: /\.(png|jpg|gif|svg)$/,
        loader: 'file-loader',
        options: {
          name: '[name].[ext]?[hash]'
        }
      }
    ]
  },

  // plugin for array, module for obj
  plugins: [
    HtmlWebpackPluginConfig
  ],

  resolve: {
    // es module == esm
    alias: {
      'vue$': 'vue/dist/vue.esm.js'
    }
  },

  devServer: {
    // History api
    historyApiFallback: true,
    noInfo: true,
    overlay: true
  },

  performance: {
    // no hint
    hints: false
  },

  // source map
  devtool: '#eval-source-map'
}

if (process.env.NODE_ENV === 'production') {
  module.exports.devtool = '#source-map'
  // http://vue-loader.vuejs.org/en/workflow/production.html
  module.exports.plugins = (module.exports.plugins || []).concat([
    // env
    new webpack.DefinePlugin({
      'process.env': {
        NODE_ENV: '"production"'
      }
    }),
    // mini js
    new webpack.optimize.UglifyJsPlugin({
      sourceMap: true,
      compress: {
        warnings: false
      }
    }),
    // other mini
    new webpack.LoaderOptionsPlugin({
      minimize: true
    })
  ])
}

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2021-11-04
    • 2016-05-19
    • 2018-07-30
    • 2022-01-10
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多