mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
9f68fc144d
Former-commit-id: 62284b15432e0641de2b47e1e1c2cc77c457ab3e [formerly 3ac1bfe2dd55541aad63101a3d4c9cca19c5fa4d] [formerly 3bd3010c32560f167acac5527acca1a1011d9243 [formerly 0f3364ad3e
]]
Former-commit-id: 3c112e30732d1ddc6d41bc47d4a9289bcf901e35 [formerly 9bd68f64d507a9aae08af15de02a6d7e87872351]
Former-commit-id: bcf8da9501ed31fac185546540f44ead04330b9c
82 lines
2.7 KiB
JavaScript
82 lines
2.7 KiB
JavaScript
var fs = require('fs')
|
|
var path = require('path')
|
|
var utils = require('./utils')
|
|
var webpack = require('webpack')
|
|
var config = require('./config')
|
|
var merge = require('webpack-merge')
|
|
var baseWebpackConfig = require('./webpack.base.conf')
|
|
var HtmlWebpackPlugin = require('html-webpack-plugin')
|
|
var ExtractTextPlugin = require('extract-text-webpack-plugin')
|
|
var FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')
|
|
var CopyWebpackPlugin = require('copy-webpack-plugin')
|
|
|
|
module.exports = merge(baseWebpackConfig, {
|
|
watch: true,
|
|
module: {
|
|
rules: utils.styleLoaders({
|
|
sourceMap: config.dev.produceSourceMap,
|
|
extract: true
|
|
})
|
|
},
|
|
devtool: '#cheap-module-eval-source-map',
|
|
output: {
|
|
path: config.assetsRoot,
|
|
filename: utils.assetsPath('js/[name].[chunkhash].js'),
|
|
chunkFilename: utils.assetsPath('js/[id].[chunkhash].js')
|
|
},
|
|
plugins: [
|
|
new webpack.NoEmitOnErrorsPlugin(),
|
|
new FriendlyErrorsPlugin(),
|
|
new webpack.DefinePlugin({
|
|
'process.env': config.dev.env
|
|
}),
|
|
// extract css into its own file
|
|
new ExtractTextPlugin({
|
|
filename: utils.assetsPath('css/[name].[contenthash].css')
|
|
}),
|
|
// generate dist index.html with correct asset hash for caching.
|
|
// you can customize output by editing /index.html
|
|
// see https://github.com/ampedandwired/html-webpack-plugin
|
|
new HtmlWebpackPlugin({
|
|
filename: config.index,
|
|
template: 'assets/index.html',
|
|
inject: true,
|
|
// necessary to consistently work with multiple chunks via CommonsChunkPlugin
|
|
chunksSortMode: 'dependency',
|
|
serviceWorkerLoader: `<script>${fs.readFileSync(path.join(__dirname,
|
|
'./service-worker-dev.js'), 'utf-8')}</script>`
|
|
}),
|
|
// split vendor js into its own file
|
|
new webpack.optimize.CommonsChunkPlugin({
|
|
name: 'vendor',
|
|
minChunks: function (module, count) {
|
|
// any required modules inside node_modules are extracted to vendor
|
|
return (
|
|
module.resource &&
|
|
/\.js$/.test(module.resource) &&
|
|
module.resource.indexOf(
|
|
path.join(__dirname, '../../node_modules')
|
|
) === 0
|
|
)
|
|
}
|
|
}),
|
|
// extract webpack runtime and module manifest to its own file in order to
|
|
// prevent vendor hash from being updated whenever app bundle is updated
|
|
new webpack.optimize.CommonsChunkPlugin({
|
|
name: 'manifest',
|
|
chunks: ['vendor']
|
|
}),
|
|
new CopyWebpackPlugin([
|
|
{
|
|
from: path.resolve(__dirname, '../static'),
|
|
to: config.assetsSubDirectory,
|
|
ignore: ['.*']
|
|
},
|
|
{
|
|
from: path.resolve(__dirname, '../../node_modules/codemirror/mode/*/*'),
|
|
to: path.join(config.assetsSubDirectory, 'js/codemirror/mode/[name]/[name].js')
|
|
}
|
|
])
|
|
]
|
|
})
|