mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 10:47:46 +01:00
58 lines
1.4 KiB
JavaScript
58 lines
1.4 KiB
JavaScript
module.exports = [
|
|
{
|
|
test: /\.jsx?$/,
|
|
exclude: /(node_modules|bower_components|public)/,
|
|
loaders: ['react-hot-loader/webpack']
|
|
},
|
|
{
|
|
test: /\.jsx?$/,
|
|
exclude: /(node_modules|bower_components|public)/,
|
|
loader: 'babel',
|
|
query: {
|
|
presets: ['es2015', 'react'],
|
|
plugins: ['transform-runtime', 'transform-decorators-legacy', 'transform-class-properties'],
|
|
}
|
|
},
|
|
{
|
|
test: /\.js?$/,
|
|
include: /node_modules\/mapbox-gl\//,
|
|
loader: 'babel',
|
|
query: {
|
|
presets: ['react'],
|
|
plugins: ['transform-flow-strip-types'],
|
|
}
|
|
},
|
|
{
|
|
test: /\.(eot|svg|ttf|woff|woff2)$/,
|
|
loader: 'file?name=fonts/[name].[ext]'
|
|
},
|
|
{
|
|
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
|
|
exclude: /(node_modules|bower_components)/,
|
|
loader: "url?limit=10000&mimetype=image/svg+xml"
|
|
},
|
|
{
|
|
test: /\.gif/,
|
|
exclude: /(node_modules|bower_components)/,
|
|
loader: "url-loader?limit=10000&mimetype=image/gif"
|
|
},
|
|
{
|
|
test: /\.jpg/,
|
|
exclude: /(node_modules|bower_components)/,
|
|
loader: "url-loader?limit=10000&mimetype=image/jpg"
|
|
},
|
|
{
|
|
test: /\.png/,
|
|
exclude: /(node_modules|bower_components)/,
|
|
loader: "url-loader?limit=10000&mimetype=image/png"
|
|
},
|
|
{
|
|
test: /\.json$/,
|
|
loader: 'json-loader'
|
|
},
|
|
{
|
|
test: /\.js$/,
|
|
include: /node_modules\/mapbox-gl\/js\/render\/shaders.js/,
|
|
loader: 'transform/cacheable?brfs'
|
|
}
|
|
];
|