mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 17:33:14 +01:00
4683ae6b17
Caused by not using the ExtractTextPlugin for development.
49 lines
1.7 KiB
JavaScript
49 lines
1.7 KiB
JavaScript
/* eslint-disable strict, no-console */
|
|
/* eslint-disable import/no-extraneous-dependencies, import/newline-after-import */
|
|
'use strict';
|
|
|
|
const removeTrailingSlash = require('remove-trailing-slash');
|
|
|
|
const WebpackDevServer = require('webpack-dev-server');
|
|
const webpack = require('webpack');
|
|
const config = require('./webpack.config.js');
|
|
|
|
require('dotenv').load({ silent: true });
|
|
|
|
const HOST = process.env.ONION_DEV_HOST || 'localhost';
|
|
const PORT = process.env.ONION_DEV_PORT || 3000;
|
|
const BASE_PATH = removeTrailingSlash(process.env.ONION_BASE_PATH || '/');
|
|
|
|
// Enable server hot reloading
|
|
// React hot reloading is enabled through .babelrc and babel-react-transform
|
|
config.entry.unshift(`webpack-dev-server/client?http://${HOST}:${PORT}/`,
|
|
'webpack/hot/dev-server');
|
|
config.plugins.push(new webpack.HotModuleReplacementPlugin());
|
|
|
|
// Set absolute url for public path to avoid OTS parsing errors in Chrome
|
|
// See http://stackoverflow.com/questions/34133808/webpack-ots-parsing-error-loading-fonts
|
|
config.output.publicPath = `http://${HOST}:${PORT}${config.output.publicPath}`;
|
|
|
|
// Configure server
|
|
const compiler = webpack(config);
|
|
|
|
const server = new WebpackDevServer(compiler, {
|
|
publicPath: config.output.publicPath,
|
|
historyApiFallback: {
|
|
index: config.output.publicPath
|
|
},
|
|
hot: true,
|
|
noInfo: true,
|
|
stats: { colors: true }
|
|
});
|
|
|
|
// Start server
|
|
server.listen(PORT, HOST, (err) => {
|
|
if (err) {
|
|
console.error(`Onion dev server ran into ${err} while starting on ${HOST}:${PORT} ` +
|
|
`with basePath set to ${BASE_PATH || '/'}. Shutting down...`);
|
|
server.close();
|
|
}
|
|
console.log(`Onion server running on ${HOST}:${PORT} with basePath set to ${BASE_PATH || '/'}.`);
|
|
});
|