Files
KaTeX/katex.webpack.js
Kevin Barabash 7b635f79cf move katex.less into src (#1120)
* move katex.less into src

* fix remaining paths for katex.less
2018-01-30 23:53:02 -05:00

12 lines
383 B
JavaScript

/**
* This is the webpack entry point for KaTeX. As flow[1] and jest[2] doesn't support
* CSS modules natively, a separate entry point is used and it is not flowtyped.
*
* [1] https://gist.github.com/lambdahands/d19e0da96285b749f0ef
* [2] https://facebook.github.io/jest/docs/en/webpack.html
*/
import './src/katex.less';
import katex from './katex.js';
export default katex;