mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-22 09:01:09 +03:00
18 lines
445 B
JavaScript
18 lines
445 B
JavaScript
module.exports = {
|
|
webpack: {
|
|
configure: {
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.m?js$/,
|
|
resolve: {
|
|
fullySpecified: false
|
|
}
|
|
}
|
|
]
|
|
},
|
|
ignoreWarnings: [/Failed to parse source map/] // Ignore warnings about source maps
|
|
}
|
|
}
|
|
}
|