2023-04-02 20:23:20 +02:00
|
|
|
import config from 'config';
|
2024-03-11 13:43:20 +01:00
|
|
|
import fs from 'fs';
|
2023-04-02 20:23:20 +02:00
|
|
|
import template from 'y8';
|
|
|
|
import html from './html.js';
|
|
|
|
|
|
|
|
// This is scripts that has to be run before the
|
|
|
|
// frontend build process
|
|
|
|
fs.writeFileSync(
|
2024-03-11 13:43:20 +01:00
|
|
|
'client/index.html',
|
2023-04-02 20:23:20 +02:00
|
|
|
template(html, { config: `'${JSON.stringify(config.get('__client_config'))}';` })
|
|
|
|
);
|