mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
22 lines
429 B
JavaScript
22 lines
429 B
JavaScript
|
const webpack = require('webpack');
|
||
|
|
||
|
module.exports = {
|
||
|
entry: './src/index.js',
|
||
|
output: {
|
||
|
filename: './dist/html2canvas.js',
|
||
|
library: 'html2canvas'
|
||
|
},
|
||
|
module: {
|
||
|
loaders: [{
|
||
|
test: /\.js$/,
|
||
|
exclude: /node_modules/,
|
||
|
loader: 'babel-loader'
|
||
|
}]
|
||
|
},
|
||
|
plugins: [
|
||
|
new webpack.DefinePlugin({
|
||
|
'__DEV__': true
|
||
|
})
|
||
|
]
|
||
|
};
|