There is a webpack config:
var webpack = require('webpack'); var path = require('path'); module.exports = { entry : { app: [path.join(__dirname, '/src/index.js')] }, output : { path : path.resolve(__dirname, 'public/'), filename : 'bundle.js' }, devtool: 'source-map', module: { loaders: [ { test : /\.js$/, exclude : [/node_modules/, /public/], loader : 'babel', query : { presets: ['es2015'] } }, { test : /\.css$/, loader : "style-loader!css-loader!autoprefixer-loader", exclude : [/node_modules/, /public/] }, ] }, devServer: { contentBase: 'public' }, devServer: { proxy: { '*': { target: 'http://127.0.0.1:3000/', secure: false } } }, proxy: { '*': { target: 'http://127.0.0.1:3000/', secure: false } } } If I run through the webpack command, then the project is going to.
If I run a project through the webpack-dev-server command, the project is not going to happen, what's the problem?