mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-10 00:46:12 +00:00
af6a84da14
ExtractTextWebpackPlugin extracts the content of loaded files, which means it loads files loaded by require.context but not required after that. However the former implementation is not aware of that. require.context can have a RegExp to filter files to load. This change gives a RegExp which matches with SCSSes with 'custom' prefix to require.context to take advantage of the feature.
26 lines
720 B
JavaScript
26 lines
720 B
JavaScript
import Mastodon from 'mastodon/containers/mastodon';
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import Rails from 'rails-ujs';
|
|
import 'font-awesome/css/font-awesome.css';
|
|
import '../styles/application.scss';
|
|
|
|
if (!window.Intl) {
|
|
require('intl');
|
|
require('intl/locale-data/jsonp/en.js');
|
|
}
|
|
|
|
window.Perf = require('react-addons-perf');
|
|
|
|
Rails.start();
|
|
|
|
require.context('../images/', true);
|
|
require.context('../../assets/stylesheets/', false, /custom.*\.scss$/);
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
const mountNode = document.getElementById('mastodon');
|
|
const props = JSON.parse(mountNode.getAttribute('data-props'));
|
|
|
|
ReactDOM.render(<Mastodon {...props} />, mountNode);
|
|
});
|