mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
21 lines
574 B
JavaScript
21 lines
574 B
JavaScript
const express = require('express');
|
|
const webpack = require('webpack');
|
|
const webpackDevMiddleware = require('webpack-dev-middleware');
|
|
|
|
const app = express();
|
|
const config = require('./webpack.config.js');
|
|
const compiler = webpack(config);
|
|
|
|
// Tell express to use the webpack-dev-middleware and use the webpack.config.js
|
|
// configuration file as a base.
|
|
app.use(
|
|
webpackDevMiddleware(compiler, {
|
|
publicPath: config.output.publicPath,
|
|
})
|
|
);
|
|
|
|
// Serve the files on port 3000.
|
|
app.listen(3000, function () {
|
|
console.log('Example app listening on port 3000!\n');
|
|
});
|