1
1
mirror of https://github.com/tweag/nickel.git synced 2024-10-06 08:07:37 +03:00

Remove unnecessary null-loading for SSR (superseeded by loadable-componenents approach)

This commit is contained in:
Yann Hamdaoui 2021-06-30 17:50:02 +02:00
parent 5df59f7eaf
commit 20d5d98356

View File

@ -4,7 +4,7 @@ exports.onCreateWebpackConfig = ({ stage, actions, loaders }) => {
// This was necessary to have the Nickel WASM REPL work with Webpack
asyncWebAssembly: true,
},
module: {
/* module: {
rules: [
{
test: /react-ace/,
@ -19,6 +19,6 @@ exports.onCreateWebpackConfig = ({ stage, actions, loaders }) => {
use: loaders.null(),
}
],
},
},*/
})
};