13 lines
472 B
JavaScript
13 lines
472 B
JavaScript
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
const baseConfig = require("../webpack.config.base");
|
|
module.exports = baseConfig(__dirname, "signalr", {
|
|
// These are only used in Node environments
|
|
// so we tell webpack not to pull them in for the browser
|
|
externals: [
|
|
"websocket",
|
|
"eventsource",
|
|
"request"
|
|
]
|
|
}); |