mirror of
https://github.com/a2nt/silverstripe-webpack.git
synced 2024-10-22 17:05:31 +02:00
10 lines
327 B
JavaScript
Executable File
10 lines
327 B
JavaScript
Executable File
/*
|
|
* Load webpack configuration from site/_config/webpack.yml
|
|
*/
|
|
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
const yaml = require('js-yaml');
|
|
const conf = yaml.safeLoad(fs.readFileSync(path.join(__dirname, 'site/_config/webpack.yml'), 'utf8'));
|
|
|
|
module.exports = conf['Site\\Templates\\WebpackTemplateProvider']; |