theia-ide / sprotty

A next-gen web-based graphics framework
Apache License 2.0
138 stars 23 forks source link

bundle.js not in examples directory #229

Closed tporcham closed 6 years ago

tporcham commented 6 years ago

Hi,

I cloned sprotty today and started playing around with it. The getting started instructions work well. However, when I ran the examples in the browser bundle.js could not be found. I fixed that for me by changing a line in webpack.config.js. I changed

output: { filename: './examples/bundle.js', },

to

output: { filename: '../examples/bundle.js', },

Not sure if this is the right way to fix it. I built the client on Ubuntu Linux 16.04 LTS

Thanks,

Thomas

spoenemann commented 6 years ago

I updated the configuration. Could you try again with the current master version, please?

tporcham commented 6 years ago

Thanks, works fine for me now with the current master version!