mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-11 07:58:13 -05:00
11 lines
191 B
JavaScript
11 lines
191 B
JavaScript
import terser from "@rollup/plugin-terser";
|
|
|
|
export default {
|
|
input: "./src/index.js",
|
|
output: {
|
|
file: "./bundle/socket.io.min.js",
|
|
format: "esm",
|
|
plugins: [terser()],
|
|
}
|
|
};
|