2020-03-27 20:59:38 +00:00
|
|
|
// Note: You must restart bin/webpack-dev-server for changes to take effect
|
2020-04-26 17:49:20 +00:00
|
|
|
console.log('Running in development mode'); // eslint-disable-line no-console
|
2020-03-27 20:59:38 +00:00
|
|
|
|
2020-04-14 20:45:38 +00:00
|
|
|
const { resolve } = require('path');
|
2020-10-07 21:33:56 +00:00
|
|
|
const { merge } = require('webpack-merge');
|
2020-03-27 20:59:38 +00:00
|
|
|
const sharedConfig = require('./shared');
|
|
|
|
const { settings, output } = require('./configuration');
|
|
|
|
|
|
|
|
const watchOptions = {};
|
|
|
|
|
2020-04-21 18:34:18 +00:00
|
|
|
const backendUrl = process.env.BACKEND_URL || 'http://localhost:4000';
|
2020-07-04 19:01:54 +00:00
|
|
|
const patronUrl = process.env.PATRON_URL || 'http://localhost:3037';
|
2020-04-21 18:34:18 +00:00
|
|
|
const secureProxy = !(process.env.PROXY_HTTPS_INSECURE === 'true');
|
|
|
|
|
|
|
|
const backendEndpoints = [
|
|
|
|
'/api',
|
2020-04-22 01:42:19 +00:00
|
|
|
'/pleroma',
|
2020-04-21 18:34:18 +00:00
|
|
|
'/nodeinfo',
|
|
|
|
'/socket',
|
|
|
|
'/oauth',
|
2020-05-25 00:14:36 +00:00
|
|
|
'/auth/password',
|
2020-04-21 18:34:18 +00:00
|
|
|
'/.well-known/webfinger',
|
|
|
|
'/static',
|
2020-09-16 03:05:39 +00:00
|
|
|
'/main/ostatus',
|
|
|
|
'/ostatus_subscribe',
|
2021-07-19 18:14:19 +00:00
|
|
|
'/favicon.png',
|
2020-04-21 18:34:18 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
const makeProxyConfig = () => {
|
|
|
|
let proxyConfig = {};
|
2020-07-04 19:01:54 +00:00
|
|
|
proxyConfig['/api/patron'] = {
|
|
|
|
target: patronUrl,
|
|
|
|
secure: secureProxy,
|
2020-08-26 17:29:42 +00:00
|
|
|
changeOrigin: true,
|
2020-07-04 19:01:54 +00:00
|
|
|
};
|
2020-04-21 18:34:18 +00:00
|
|
|
backendEndpoints.map(endpoint => {
|
|
|
|
proxyConfig[endpoint] = {
|
|
|
|
target: backendUrl,
|
|
|
|
secure: secureProxy,
|
2020-08-26 17:29:42 +00:00
|
|
|
changeOrigin: true,
|
2020-04-21 18:34:18 +00:00
|
|
|
};
|
|
|
|
});
|
|
|
|
return proxyConfig;
|
|
|
|
};
|
2020-03-28 05:56:50 +00:00
|
|
|
|
2020-03-27 20:59:38 +00:00
|
|
|
if (process.env.VAGRANT) {
|
|
|
|
// If we are in Vagrant, we can't rely on inotify to update us with changed
|
|
|
|
// files, so we must poll instead. Here, we poll every second to see if
|
|
|
|
// anything has changed.
|
|
|
|
watchOptions.poll = 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = merge(sharedConfig, {
|
|
|
|
mode: 'development',
|
|
|
|
cache: true,
|
|
|
|
devtool: 'source-map',
|
|
|
|
|
|
|
|
stats: {
|
|
|
|
errorDetails: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
output: {
|
|
|
|
pathinfo: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
devServer: {
|
|
|
|
clientLogLevel: 'none',
|
2020-10-08 04:02:53 +00:00
|
|
|
compress: true,
|
|
|
|
quiet: false,
|
|
|
|
disableHostCheck: true,
|
|
|
|
host: 'localhost',
|
|
|
|
port: 3036,
|
|
|
|
https: false,
|
|
|
|
hot: false,
|
2020-03-28 02:20:56 +00:00
|
|
|
contentBase: resolve(__dirname, '..', settings.public_root_path),
|
2020-10-08 04:02:53 +00:00
|
|
|
inline: true,
|
|
|
|
useLocalIp: false,
|
|
|
|
public: 'localhost:3036',
|
2020-03-27 20:59:38 +00:00
|
|
|
publicPath: output.publicPath,
|
|
|
|
historyApiFallback: {
|
|
|
|
disableDotRule: true,
|
|
|
|
},
|
2020-10-08 04:02:53 +00:00
|
|
|
headers: {
|
|
|
|
'Access-Control-Allow-Origin': '*',
|
|
|
|
},
|
|
|
|
overlay: true,
|
2020-03-27 20:59:38 +00:00
|
|
|
stats: {
|
|
|
|
entrypoints: false,
|
|
|
|
errorDetails: false,
|
|
|
|
modules: false,
|
|
|
|
moduleTrace: false,
|
|
|
|
},
|
|
|
|
watchOptions: Object.assign(
|
|
|
|
{},
|
2020-10-08 04:02:53 +00:00
|
|
|
{ ignored: '**/node_modules/**' },
|
2020-10-07 18:08:36 +00:00
|
|
|
watchOptions,
|
2020-03-27 20:59:38 +00:00
|
|
|
),
|
2020-03-28 02:20:56 +00:00
|
|
|
serveIndex: true,
|
2020-04-21 18:34:18 +00:00
|
|
|
proxy: makeProxyConfig(),
|
2020-03-27 20:59:38 +00:00
|
|
|
},
|
|
|
|
});
|