mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 09:27:46 +01:00
54 lines
1.3 KiB
JavaScript
54 lines
1.3 KiB
JavaScript
"use strict";
|
||
var webpack = require('webpack');
|
||
var path = require('path');
|
||
var loaders = require('./webpack.loaders');
|
||
var HtmlWebpackPlugin = require('html-webpack-plugin');
|
||
|
||
const HOST = process.env.HOST || "127.0.0.1";
|
||
const PORT = process.env.PORT || "8888";
|
||
|
||
module.exports = {
|
||
target: 'web',
|
||
entry: [
|
||
`webpack-dev-server/client?http://${HOST}:${PORT}`,
|
||
`webpack/hot/only-dev-server`,
|
||
`./src/index.jsx` // Your appʼs entry point
|
||
],
|
||
devtool: process.env.WEBPACK_DEVTOOL || 'cheap-module-source-map',
|
||
output: {
|
||
path: path.join(__dirname, 'public'),
|
||
filename: 'bundle.js'
|
||
},
|
||
resolve: {
|
||
extensions: ['', '.js', '.jsx']
|
||
},
|
||
module: {
|
||
loaders
|
||
},
|
||
node: {
|
||
fs: "empty",
|
||
net: 'empty',
|
||
tls: 'empty'
|
||
},
|
||
devServer: {
|
||
contentBase: "./public",
|
||
// do not print bundle build stats
|
||
noInfo: true,
|
||
// enable HMR
|
||
hot: true,
|
||
// embed the webpack-dev-server runtime into the bundle
|
||
inline: true,
|
||
// serve index.html in place of 404 responses to allow HTML5 history
|
||
historyApiFallback: true,
|
||
port: PORT,
|
||
host: HOST
|
||
},
|
||
plugins: [
|
||
new webpack.NoErrorsPlugin(),
|
||
new webpack.HotModuleReplacementPlugin(),
|
||
new HtmlWebpackPlugin({
|
||
title: 'Maputnik',
|
||
template: './src/template.html'
|
||
}),
|
||
]
|
||
};
|