mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-29 19:12:26 +08:00
06274c6a7c
Fixed owncloud password encoder/decoder (#291) Fixed ckeditor in ownCloud iframe (Closes #302) Release commit
39 lines
No EOL
814 B
JavaScript
39 lines
No EOL
814 B
JavaScript
var webpack = require('webpack');
|
|
|
|
module.exports = {
|
|
entry: {
|
|
'app': __dirname + '/dev/app.js',
|
|
'admin': __dirname + '/dev/admin.js'
|
|
},
|
|
output: {
|
|
pathinfo: true,
|
|
path: __dirname + '/rainloop/v/0.0.0/static/js/',
|
|
filename: '[name].js',
|
|
publicPath: 'rainloop/v/0.0.0/static/js/',
|
|
chunkFilename: '[chunkhash].chunk.js'
|
|
},
|
|
plugins: [
|
|
new webpack.optimize.OccurenceOrderPlugin()
|
|
],
|
|
resolve: {
|
|
modulesDirectories: [__dirname + '/dev/'],
|
|
extensions: ['', '.js'],
|
|
alias: {
|
|
"ko": __dirname + "/dev/External/ko.js"
|
|
}
|
|
},
|
|
externals: {
|
|
'window': 'window',
|
|
'JSON': 'JSON',
|
|
'moment': 'moment',
|
|
'ifvisible': 'ifvisible',
|
|
'crossroads': 'crossroads',
|
|
'hasher': 'hasher',
|
|
'Jua': 'Jua',
|
|
'Autolinker': 'Autolinker',
|
|
'ssm': 'ssm',
|
|
'key': 'key',
|
|
'_': '_',
|
|
'$': 'jQuery'
|
|
}
|
|
}; |