10 lines
443 B
JavaScript
10 lines
443 B
JavaScript
const PACKAGE = require('mathjax-full/components/webpack.common.js');
|
|
|
|
module.exports = PACKAGE(
|
|
'physjax', // the name of the package to build
|
|
'../node_modules/mathjax-full/js', // location of the mathjax library
|
|
[], // packages to link to
|
|
__dirname, // our directory
|
|
'.' // where to put the packaged component
|
|
);
|