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