1
0
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-18 16:11:42 +01:00

17 lines
426 B
JavaScript
Raw Normal View History

const babel = require('./babel');
const css = require('./css');
const file = require('./file');
const materialIcons = require('./material_icons');
const tesseract = require('./tesseract');
// Webpack loaders are processed in reverse order
// https://webpack.js.org/concepts/loaders/#loader-features
// Lastly, process static files using file loader
module.exports = {
materialIcons,
file,
tesseract,
css,
babel,
};