akkoma-fe/build/webpack.dev.conf.js

38 lines
1.2 KiB
JavaScript
Raw Normal View History

2016-10-26 14:46:32 +00:00
var config = require('../config')
var webpack = require('webpack')
var { merge } = require('webpack-merge')
2016-10-26 14:46:32 +00:00
var utils = require('./utils')
var baseWebpackConfig = require('./webpack.base.conf')
var HtmlWebpackPlugin = require('html-webpack-plugin')
// add hot-reload related code to entry chunks
Object.keys(baseWebpackConfig.entry).forEach(function (name) {
baseWebpackConfig.entry[name] = ['./build/dev-client'].concat(baseWebpackConfig.entry[name])
})
module.exports = merge(baseWebpackConfig, {
module: {
rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap })
2016-10-26 14:46:32 +00:00
},
2019-04-28 19:03:03 +00:00
mode: 'development',
2016-10-26 14:46:32 +00:00
// eval-source-map is faster for development
devtool: 'eval-source-map',
2016-10-26 14:46:32 +00:00
plugins: [
new webpack.DefinePlugin({
'process.env': config.dev.env,
'COMMIT_HASH': JSON.stringify('DEV'),
2022-03-28 21:58:17 +00:00
'DEV_OVERRIDES': JSON.stringify(config.dev.settings),
'__VUE_OPTIONS_API__': true,
'__VUE_PROD_DEVTOOLS__': false
2016-10-26 14:46:32 +00:00
}),
// https://github.com/glenjamin/webpack-hot-middleware#installation--usage
new webpack.HotModuleReplacementPlugin(),
// https://github.com/ampedandwired/html-webpack-plugin
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
inject: true
})
]
})