flowbased / fbp-graph

FBP graph library for JavaScript
52 stars 14 forks source link

Should exclude fs from Graph.js #375

Closed linonetwo closed 1 year ago

linonetwo commented 1 year ago

https://github.com/flowhub/the-graph/issues/620

Should move node related things to a separate file.

linonetwo commented 1 year ago

Solved by this in webpack config.

  resolve: {
    alias: webpackAlias,
    extensions: ['.js', '.ts', '.jsx', '.tsx', '.css'],
-   fallback: { crypto: false },
+   fallback: { crypto: false, fs: false },
  },