php config loader for webpack
config.php
<?php
return [
[
'value' => 'foo',
'label' => 'Foo label'
],
[
'value' => 'bar',
'label' => 'Bar label'
]
];
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.php?$/,
use: [
{
loader: 'php-config-loader'
},
]
},
...
],
},
...
};