Toby Zerner 49fa832a9b Remove compatPrefix option
Aliasing was only working for the `src` directory, it would not find
modules in the `lib` directory. Therefore the easiest way to migrate
will be to remove the prefix manually from import statements.
2018-02-24 17:03:09 +10:30

11 lines
298 B
Markdown
Executable File

**Webpack config for Flarum JavaScript compilation.**
This package generates a [Webpack](https://webpack.js.org) config object that will compile JavaScript for use in Flarum. Example usage:
```js
// webpack.config.js
var config = require('flarum-webpack-config');
module.exports = config();
```