2020-03-27 13:59:38 -07:00
|
|
|
// Note: You must restart bin/webpack-dev-server for changes to take effect
|
2020-04-26 10:49:20 -07:00
|
|
|
console.log('Running in development mode'); // eslint-disable-line no-console
|
2020-03-27 13:59:38 -07:00
|
|
|
|
2020-10-07 14:33:56 -07:00
|
|
|
const { merge } = require('webpack-merge');
|
2020-03-27 13:59:38 -07:00
|
|
|
const sharedConfig = require('./shared');
|
|
|
|
|
|
|
|
const watchOptions = {};
|
|
|
|
|
2020-04-21 11:34:18 -07:00
|
|
|
const backendUrl = process.env.BACKEND_URL || 'http://localhost:4000';
|
2020-07-04 12:01:54 -07:00
|
|
|
const patronUrl = process.env.PATRON_URL || 'http://localhost:3037';
|
2020-04-21 11:34:18 -07:00
|
|
|
const secureProxy = !(process.env.PROXY_HTTPS_INSECURE === 'true');
|
|
|
|
|
|
|
|
const backendEndpoints = [
|
|
|
|
'/api',
|
2020-04-21 18:42:19 -07:00
|
|
|
'/pleroma',
|
2020-04-21 11:34:18 -07:00
|
|
|
'/nodeinfo',
|
|
|
|
'/socket',
|
|
|
|
'/oauth',
|
2020-05-24 17:14:36 -07:00
|
|
|
'/auth/password',
|
2020-04-21 11:34:18 -07:00
|
|
|
'/.well-known/webfinger',
|
|
|
|
'/static',
|
2020-09-15 20:05:39 -07:00
|
|
|
'/main/ostatus',
|
|
|
|
'/ostatus_subscribe',
|
2021-07-19 11:14:19 -07:00
|
|
|
'/favicon.png',
|
2020-04-21 11:34:18 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
const makeProxyConfig = () => {
|
2021-08-03 10:10:42 -07:00
|
|
|
const proxyConfig = {};
|
2020-07-04 12:01:54 -07:00
|
|
|
proxyConfig['/api/patron'] = {
|
|
|
|
target: patronUrl,
|
|
|
|
secure: secureProxy,
|
2020-08-26 10:29:42 -07:00
|
|
|
changeOrigin: true,
|
2020-07-04 12:01:54 -07:00
|
|
|
};
|
2020-04-21 11:34:18 -07:00
|
|
|
backendEndpoints.map(endpoint => {
|
|
|
|
proxyConfig[endpoint] = {
|
|
|
|
target: backendUrl,
|
|
|
|
secure: secureProxy,
|
2020-08-26 10:29:42 -07:00
|
|
|
changeOrigin: true,
|
2020-04-21 11:34:18 -07:00
|
|
|
};
|
|
|
|
});
|
|
|
|
return proxyConfig;
|
|
|
|
};
|
2020-03-27 22:56:50 -07:00
|
|
|
|
2020-03-27 13:59:38 -07: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-07 21:02:53 -07:00
|
|
|
compress: true,
|
|
|
|
quiet: false,
|
|
|
|
disableHostCheck: true,
|
|
|
|
host: 'localhost',
|
|
|
|
port: 3036,
|
|
|
|
https: false,
|
|
|
|
hot: false,
|
|
|
|
inline: true,
|
|
|
|
useLocalIp: false,
|
|
|
|
public: 'localhost:3036',
|
2020-03-27 13:59:38 -07:00
|
|
|
historyApiFallback: {
|
|
|
|
disableDotRule: true,
|
|
|
|
},
|
2020-10-07 21:02:53 -07:00
|
|
|
headers: {
|
|
|
|
'Access-Control-Allow-Origin': '*',
|
|
|
|
},
|
|
|
|
overlay: true,
|
2020-03-27 13:59:38 -07:00
|
|
|
stats: {
|
|
|
|
entrypoints: false,
|
|
|
|
errorDetails: false,
|
|
|
|
modules: false,
|
|
|
|
moduleTrace: false,
|
|
|
|
},
|
|
|
|
watchOptions: Object.assign(
|
|
|
|
{},
|
2020-10-07 21:02:53 -07:00
|
|
|
{ ignored: '**/node_modules/**' },
|
2020-10-07 11:08:36 -07:00
|
|
|
watchOptions,
|
2020-03-27 13:59:38 -07:00
|
|
|
),
|
2020-03-27 19:20:56 -07:00
|
|
|
serveIndex: true,
|
2020-04-21 11:34:18 -07:00
|
|
|
proxy: makeProxyConfig(),
|
2020-03-27 13:59:38 -07:00
|
|
|
},
|
|
|
|
});
|