~cytrogen/masto-fe

ref: ec59166844b04ec416bdbc2612fd8a4364f9dd67 masto-fe/config/webpack/configuration.js -rw-r--r-- 750 bytes
ec591668 — Claire Fix ArgumentError when loading newer Private Mentions (#25399) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Common configuration for webpacker loaded from config/webpacker.yml

const { readFileSync } = require('fs');
const { resolve } = require('path');
const { env } = require('process');

const { load } = require('js-yaml');

const configPath = resolve('config', 'webpacker.yml');
const settings = load(readFileSync(configPath), 'utf8')[env.RAILS_ENV || env.NODE_ENV];

const themePath = resolve('config', 'themes.yml');
const themes = load(readFileSync(themePath), 'utf8');

const output = {
  path: resolve('public', settings.public_output_path),
  publicPath: `/${settings.public_output_path}/`,
};

module.exports = {
  settings,
  themes,
  env: {
    NODE_ENV: env.NODE_ENV,
    PUBLIC_OUTPUT_PATH: settings.public_output_path,
  },
  output,
};