mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-09 23:18:02 -05:00
20 lines
316 B
JavaScript
20 lines
316 B
JavaScript
const path = require("path");
|
|
|
|
module.exports = {
|
|
entry: "./index.js",
|
|
target: "node",
|
|
mode: "production",
|
|
output: {
|
|
path: path.resolve(__dirname, "dist"),
|
|
filename: "index.js",
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
resourceQuery: /raw/,
|
|
type: "asset/source",
|
|
},
|
|
],
|
|
},
|
|
};
|