101 lines
3.2 KiB
JavaScript
Executable File
101 lines
3.2 KiB
JavaScript
Executable File
'use strict';
|
|
const utils = require('./utils');
|
|
const webpack = require('webpack');
|
|
const config = require('../config');
|
|
const path = require('path');
|
|
const baseWebpackConfig = require('./webpack.base.conf');
|
|
const CopyPlugin = require('copy-webpack-plugin');
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
|
const portfinder = require('portfinder');
|
|
const {merge} = require('webpack-merge');
|
|
|
|
const HOST = process.env.HOST;
|
|
const PORT = process.env.PORT && Number(process.env.PORT);
|
|
|
|
const devWebpackConfig = merge(baseWebpackConfig, {
|
|
// cheap-module-eval-source-map is faster for development
|
|
devtool: config.dev.devtool,
|
|
mode: 'development',
|
|
// these devServer options should be customized in /config/index.js
|
|
devServer: {
|
|
client: {
|
|
logging: 'warn',
|
|
overlay: config.dev.errorOverlay ? {errors: true, warnings: false} : false,
|
|
progress: true,
|
|
|
|
},
|
|
|
|
historyApiFallback: {
|
|
rewrites: [
|
|
{from: /.*/, to: path.posix.join(config.dev.assetsPublicPath, 'index.html')},
|
|
],
|
|
},
|
|
hot: true,
|
|
compress: true,
|
|
host: HOST || config.dev.host,
|
|
port: PORT || config.dev.port,
|
|
open: config.dev.autoOpenBrowser,
|
|
// publicPath: config.dev.assetsPublicPath,
|
|
proxy: config.dev.proxyTable,
|
|
// quiet: true, // necessary for FriendlyErrorsPlugin
|
|
},
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
'process.env': require('../config/dev.env'),
|
|
// bundler feature flags https://github.com/vuejs/vue-next/tree/master/packages/vue#bundler-build-feature-flags
|
|
__VUE_OPTIONS_API__: true, // default, but explicit
|
|
__VUE_PROD_DEVTOOLS__: false, // default, but explicit
|
|
}),
|
|
new webpack.HotModuleReplacementPlugin(),
|
|
// https://github.com/ampedandwired/html-webpack-plugin
|
|
new HtmlWebpackPlugin({
|
|
filename: 'index.html',
|
|
template: 'index.html',
|
|
...require('../config/dev.env'),
|
|
}),
|
|
// copy custom static assets
|
|
new CopyPlugin({
|
|
patterns: [
|
|
{
|
|
from: path.resolve(__dirname, '../static'),
|
|
to: config.dev.assetsSubDirectory,
|
|
globOptions: {
|
|
ignore: ['.*'],
|
|
},
|
|
},
|
|
],
|
|
}),
|
|
new BundleAnalyzerPlugin({
|
|
generateStatsFile: true
|
|
}),
|
|
],
|
|
});
|
|
|
|
module.exports = new Promise((resolve, reject) => {
|
|
portfinder.basePort = process.env.PORT || config.dev.port;
|
|
portfinder.getPort((err, port) => {
|
|
if (err) {
|
|
reject(err);
|
|
} else {
|
|
// publish the new Port, necessary for e2e tests
|
|
process.env.PORT = port;
|
|
// add port to devServer config
|
|
devWebpackConfig.devServer.port = port;
|
|
|
|
// Add FriendlyErrorsPlugin
|
|
// todo: seems to not be maintained anymore, disable for now
|
|
// devWebpackConfig.plugins.push(new FriendlyErrorsPlugin({
|
|
// compilationSuccessInfo: {
|
|
// messages: [`Your application is running here: http://${devWebpackConfig.devServer.host}:${port}`],
|
|
// },
|
|
// onErrors: config.dev.notifyOnErrors
|
|
// ? utils.createNotifierCallback()
|
|
// : undefined,
|
|
// }));
|
|
|
|
resolve(devWebpackConfig);
|
|
}
|
|
});
|
|
});
|