flecks/packages/core/build/webpack.config.js

9 lines
258 B
JavaScript
Raw Normal View History

2023-11-30 21:41:42 -06:00
const configFn = require('../src/server/build/fleck.webpack.config');
const {executable} = require('../src/server/webpack');
2022-02-25 04:58:08 -06:00
2023-11-30 21:41:42 -06:00
module.exports = (env, argv) => {
const config = configFn(env, argv);
config.plugins.push(...executable());
return config;
};