2017-06-18 01:57:09 +01:00
|
|
|
// Common configuration for webpacker loaded from config/webpacker.yml
|
2017-05-03 01:04:16 +01:00
|
|
|
|
2017-05-20 16:31:47 +01:00
|
|
|
const { join, resolve } = require('path');
|
|
|
|
const { env } = require('process');
|
|
|
|
const { safeLoad } = require('js-yaml');
|
|
|
|
const { readFileSync } = require('fs');
|
2017-05-03 01:04:16 +01:00
|
|
|
|
2017-06-18 01:57:09 +01:00
|
|
|
const configPath = resolve('config', 'webpacker.yml');
|
2017-05-20 16:31:47 +01:00
|
|
|
const loadersDir = join(__dirname, 'loaders');
|
2018-09-13 14:18:47 +01:00
|
|
|
const settings = safeLoad(readFileSync(configPath), 'utf8')[env.RAILS_ENV || env.NODE_ENV];
|
2017-05-03 01:04:16 +01:00
|
|
|
|
2017-09-19 15:36:23 +01:00
|
|
|
const themePath = resolve('config', 'themes.yml');
|
|
|
|
const themes = safeLoad(readFileSync(themePath), 'utf8');
|
|
|
|
|
2017-06-18 01:57:09 +01: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 00:06:39 +00:00
|
|
|
publicPath: formatPublicPath(env.CDN_HOST, settings.public_output_path),
|
2017-06-18 01:57:09 +01:00
|
|
|
};
|
2017-05-03 01:04:16 +01:00
|
|
|
|
|
|
|
module.exports = {
|
2017-06-18 01:57:09 +01:00
|
|
|
settings,
|
2017-09-19 15:36:23 +01:00
|
|
|
themes,
|
2018-05-14 16:45:37 +01:00
|
|
|
env: {
|
|
|
|
CDN_HOST: env.CDN_HOST,
|
|
|
|
NODE_ENV: env.NODE_ENV,
|
|
|
|
},
|
2017-05-03 01:04:16 +01:00
|
|
|
loadersDir,
|
2017-06-18 01:57:09 +01:00
|
|
|
output,
|
2017-05-20 16:31:47 +01:00
|
|
|
};
|