mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2025-01-30 19:05:34 +01:00
Fix CSS loading for production
This commit is contained in:
parent
3ee1473a49
commit
cfb7f56574
3 changed files with 7 additions and 27 deletions
|
@ -7,14 +7,6 @@ var HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||||
const HOST = process.env.HOST || "127.0.0.1";
|
const HOST = process.env.HOST || "127.0.0.1";
|
||||||
const PORT = process.env.PORT || "8888";
|
const PORT = process.env.PORT || "8888";
|
||||||
|
|
||||||
// global css
|
|
||||||
loaders.push({
|
|
||||||
test: /[\/\\](node_modules|global)[\/\\].*\.css$/,
|
|
||||||
loaders: [
|
|
||||||
'style?sourceMap',
|
|
||||||
'css'
|
|
||||||
]
|
|
||||||
});
|
|
||||||
// local scss modules
|
// local scss modules
|
||||||
loaders.push({
|
loaders.push({
|
||||||
test: /[\/\\]src[\/\\].*\.scss/,
|
test: /[\/\\]src[\/\\].*\.scss/,
|
||||||
|
@ -24,14 +16,6 @@ loaders.push({
|
||||||
'sass'
|
'sass'
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
// local css modules
|
|
||||||
loaders.push({
|
|
||||||
test: /[\/\\]src[\/\\].*\.css/,
|
|
||||||
loaders: [
|
|
||||||
'style?sourceMap',
|
|
||||||
'css'
|
|
||||||
]
|
|
||||||
});
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
target: 'web',
|
target: 'web',
|
||||||
|
|
|
@ -54,5 +54,12 @@ module.exports = [
|
||||||
test: /\.js$/,
|
test: /\.js$/,
|
||||||
include: /node_modules\/mapbox-gl\/js\/render\/shaders.js/,
|
include: /node_modules\/mapbox-gl\/js\/render\/shaders.js/,
|
||||||
loader: 'transform/cacheable?brfs'
|
loader: 'transform/cacheable?brfs'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
test: /[\/\\](node_modules|global|src)[\/\\].*\.css$/,
|
||||||
|
loaders: [
|
||||||
|
'style?sourceMap',
|
||||||
|
'css'
|
||||||
|
]
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
@ -6,22 +6,11 @@ var ExtractTextPlugin = require('extract-text-webpack-plugin');
|
||||||
var HtmlWebpackPlugin = require('html-webpack-plugin');
|
var HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||||
var WebpackCleanupPlugin = require('webpack-cleanup-plugin');
|
var WebpackCleanupPlugin = require('webpack-cleanup-plugin');
|
||||||
|
|
||||||
// local css modules
|
|
||||||
loaders.push({
|
|
||||||
test: /[\/\\]src[\/\\].*\.css/,
|
|
||||||
loader: ExtractTextPlugin.extract('style', 'css?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]')
|
|
||||||
});
|
|
||||||
|
|
||||||
// local scss modules
|
// local scss modules
|
||||||
loaders.push({
|
loaders.push({
|
||||||
test: /[\/\\]src[\/\\].*\.scss/,
|
test: /[\/\\]src[\/\\].*\.scss/,
|
||||||
loader: ExtractTextPlugin.extract('style', 'css?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]', 'sass')
|
loader: ExtractTextPlugin.extract('style', 'css?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]', 'sass')
|
||||||
});
|
});
|
||||||
// global css files
|
|
||||||
loaders.push({
|
|
||||||
test: /[\/\\](node_modules|global)[\/\\].*\.css$/,
|
|
||||||
loader: ExtractTextPlugin.extract('style', 'css')
|
|
||||||
});
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
entry: {
|
entry: {
|
||||||
|
|
Loading…
Reference in a new issue