1
0
mirror of https://github.com/flarum/core.git synced 2025-05-16 04:09:41 +02:00
php-flarum/framework/core/js/webpack.config.cjs
Sami Mazouz e7fc29a59f
feat(jest): create jest config package for unit testing (#3678)
* feat(jest): create jest config package for unit testing
* chore: housekeeping
* fix: now we need to explicitly allow importing without extension
* fix: recover EditorDriverInterface import
* Apply suggestions from code review
* chore: yarn

Signed-off-by: Sami Mazouz <sychocouldy@gmail.com>
2023-02-08 22:02:40 +01:00

9 lines
178 B
JavaScript
Executable File

const config = require('flarum-webpack-config');
const { merge } = require('webpack-merge');
module.exports = merge(config(), {
output: {
library: 'flarum.core',
},
});