无法在简单的vue设置中进行GET /

时间:2017-10-31 05:48:42

标签: webpack vue.js

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

https://github.com/kenpeter/auto_complete_vue

npm run dev

我得到的错误是

Cannot GET /

基于此模板:

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

2 个答案:

答案 0 :(得分:0)

如果你看这个vue-router示例:

https://github.com/vuejs/vue-router/blob/dev/examples/basic/app.js#L29

这是:

new Vue({
  el: '#app',
    router,
  render: h => h(App)
})

应该是:

new Vue({
  router,
  el: '#app',
  render: h => h(App)
})

您可以看到路由器在el: "#app"之前

所以我认为这是问题,它没有得到路线。

答案 1 :(得分:0)

// 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
    })
  ])
}