katex.webpack.js 398 B

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