2017-06-18 00:57:09 +00:00
|
|
|
// Common configuration for webpacker loaded from config/webpacker.yml
|
2017-05-03 00:04:16 +00:00
|
|
|
|
2019-03-15 14:05:31 +00:00
|
|
|
const { resolve } = require('path');
|
2017-05-20 15:31:47 +00:00
|
|
|
const { env } = require('process');
|
2021-01-04 17:08:59 +00:00
|
|
|
const { load } = require('js-yaml');
|
2017-05-20 15:31:47 +00:00
|
|
|
const { readFileSync } = require('fs');
|
2017-05-03 00:04:16 +00:00
|
|
|
|
2017-06-18 00:57:09 +00:00
|
|
|
const configPath = resolve('config', 'webpacker.yml');
|
2021-01-04 17:08:59 +00:00
|
|
|
const settings = load(readFileSync(configPath), 'utf8')[env.RAILS_ENV || env.NODE_ENV];
|
2017-05-03 00:04:16 +00:00
|
|
|
|
2017-09-19 14:36:23 +00:00
|
|
|
const themePath = resolve('config', 'themes.yml');
|
2021-01-04 17:08:59 +00:00
|
|
|
const themes = load(readFileSync(themePath), 'utf8');
|
2017-09-19 14:36:23 +00:00
|
|
|
|
2017-06-18 00:57:09 +00:00
|
|
|
const output = {
|
|
|
|
path: resolve('public', settings.public_output_path),
|
2020-10-12 23:19:35 +00:00
|
|
|
publicPath: `/${settings.public_output_path}/`,
|
2017-06-18 00:57:09 +00:00
|
|
|
};
|
2017-05-03 00:04:16 +00:00
|
|
|
|
|
|
|
module.exports = {
|
2017-06-18 00:57:09 +00:00
|
|
|
settings,
|
2017-09-19 14:36:23 +00:00
|
|
|
themes,
|
2018-05-14 15:45:37 +00:00
|
|
|
env: {
|
|
|
|
NODE_ENV: env.NODE_ENV,
|
2020-10-12 23:19:35 +00:00
|
|
|
PUBLIC_OUTPUT_PATH: settings.public_output_path,
|
2018-05-14 15:45:37 +00:00
|
|
|
},
|
2017-06-18 00:57:09 +00:00
|
|
|
output,
|
2017-05-20 15:31:47 +00:00
|
|
|
};
|