mirror of
https://github.com/aleleba/create-react-ssr.git
synced 2025-06-18 11:58:29 -06:00
PR-415815: fixing webpack build.
This commit is contained in:
@ -201,7 +201,16 @@ const serverConfig = {
|
||||
'options': {
|
||||
modules: {
|
||||
auto: /\.module\.\w+$/i,
|
||||
}
|
||||
},
|
||||
url: {
|
||||
filter: (url) => {
|
||||
// No procesar URLs absolutas que comienzan con /
|
||||
if (url.startsWith('/')) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
},
|
||||
},
|
||||
},
|
||||
'sass-loader',
|
||||
|
Reference in New Issue
Block a user