mirror of
https://github.com/docker/awesome-compose.git
synced 2025-12-29 18:28:29 +01:00
Move all samples to the root dir
Signed-off-by: Anca Iordache <anca.iordache@docker.com>
This commit is contained in:
38
react-java-mysql/frontend/webpack/dev-server.js
vendored
Executable file
38
react-java-mysql/frontend/webpack/dev-server.js
vendored
Executable file
@@ -0,0 +1,38 @@
|
||||
'use strict';
|
||||
|
||||
const webpack = require('webpack'),
|
||||
WebpackDevServer = require('webpack-dev-server'),
|
||||
makeConfig = require("./config-builder");
|
||||
|
||||
const startWebpackServer = () => {
|
||||
const config = makeConfig('development');
|
||||
|
||||
const SERVER_PORT = 9000;
|
||||
|
||||
new WebpackDevServer(webpack(config), {
|
||||
publicPath : config.output.publicPath,
|
||||
hot : true,
|
||||
historyApiFallback : true,
|
||||
contentBase : "./build/",
|
||||
|
||||
watchOptions: { // no file events on D4W
|
||||
aggregateTimeout: 300,
|
||||
poll: 1000
|
||||
},
|
||||
|
||||
proxy : {
|
||||
"/api/*" : "http://127.0.0.1:8080" // proxy to backend
|
||||
},
|
||||
|
||||
before : function(app) {
|
||||
// manually configure app `app.use(...)`
|
||||
}
|
||||
}).listen(SERVER_PORT, '0.0.0.0', function (err, result) {
|
||||
if (err) {
|
||||
console.log(err);
|
||||
}
|
||||
console.log('Webpack dev server listening at localhost:' + SERVER_PORT);
|
||||
});
|
||||
};
|
||||
|
||||
startWebpackServer();
|
||||
Reference in New Issue
Block a user