2017-06-18 02:57:09 +02:00
|
|
|
// Common configuration for webpacker loaded from config/webpacker.yml
|
2017-05-03 02:04:16 +02:00
|
|
|
|
2019-03-15 15:05:31 +01:00
|
|
|
const { resolve } = require('path');
|
2017-05-20 17:31:47 +02:00
|
|
|
const { env } = require('process');
|
|
|
|
const { safeLoad } = require('js-yaml');
|
|
|
|
const { readFileSync } = require('fs');
|
2017-05-03 02:04:16 +02:00
|
|
|
|
2017-06-18 02:57:09 +02:00
|
|
|
const configPath = resolve('config', 'webpacker.yml');
|
2018-09-13 15:18:47 +02:00
|
|
|
const settings = safeLoad(readFileSync(configPath), 'utf8')[env.RAILS_ENV || env.NODE_ENV];
|
2017-05-03 02:04:16 +02:00
|
|
|
|
2017-09-19 16:36:23 +02:00
|
|
|
const themePath = resolve('config', 'themes.yml');
|
|
|
|
const themes = safeLoad(readFileSync(themePath), 'utf8');
|
|
|
|
|
2017-06-18 02:57:09 +02:00
|
|
|
function removeOuterSlashes(string) {
|
|
|
|
return string.replace(/^\/*/, '').replace(/\/*$/, '');
|
|
|
|
}
|
|
|
|
|
|
|
|
function formatPublicPath(host = '', path = '') {
|
|
|
|
let formattedHost = removeOuterSlashes(host);
|
|
|
|
if (formattedHost && !/^http/i.test(formattedHost)) {
|
|
|
|
formattedHost = `//${formattedHost}`;
|
|
|
|
}
|
|
|
|
const formattedPath = removeOuterSlashes(path);
|
|
|
|
return `${formattedHost}/${formattedPath}/`;
|
|
|
|
}
|
|
|
|
|
|
|
|
const output = {
|
|
|
|
path: resolve('public', settings.public_output_path),
|
2018-01-29 01:06:39 +01:00
|
|
|
publicPath: formatPublicPath(env.CDN_HOST, settings.public_output_path),
|
2017-06-18 02:57:09 +02:00
|
|
|
};
|
2017-05-03 02:04:16 +02:00
|
|
|
|
|
|
|
module.exports = {
|
2017-06-18 02:57:09 +02:00
|
|
|
settings,
|
2017-09-19 16:36:23 +02:00
|
|
|
themes,
|
2018-05-14 17:45:37 +02:00
|
|
|
env: {
|
|
|
|
CDN_HOST: env.CDN_HOST,
|
|
|
|
NODE_ENV: env.NODE_ENV,
|
|
|
|
},
|
2017-06-18 02:57:09 +02:00
|
|
|
output,
|
2017-05-20 17:31:47 +02:00
|
|
|
};
|