first commit
This commit is contained in:
commit
44146b7801
8 changed files with 11658 additions and 0 deletions
19
webpack.config.js
Normal file
19
webpack.config.js
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
const path = require('path');
|
||||
const webpack = require('webpack');
|
||||
|
||||
module.exports = {
|
||||
entry: './index.js',
|
||||
// debug: true,
|
||||
devtool: 'source-map',
|
||||
output: {
|
||||
filename: 'mirador-integration.js',
|
||||
path: path.resolve(__dirname, './'),
|
||||
publicPath: './',
|
||||
},
|
||||
plugins: [
|
||||
new webpack.optimize.LimitChunkCountPlugin({
|
||||
maxChunks: 1, // disable creating additional chunks
|
||||
})
|
||||
],
|
||||
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue