mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-14 13:31:22 +00:00
adds julia set example (#419)
* adds julia set example * fixes indentation in *.js files * fixes *.js formatting * fixes a typo in function arguments signature
This commit is contained in:
committed by
Alex Crichton
parent
b66095bcff
commit
a5b8c45d28
13
examples/julia_set/webpack.config.js
Normal file
13
examples/julia_set/webpack.config.js
Normal file
@ -0,0 +1,13 @@
|
||||
const path = require('path');
|
||||
|
||||
module.exports = {
|
||||
entry: './index.js',
|
||||
output: {
|
||||
path: path.resolve(__dirname, 'dist'),
|
||||
filename: 'index.js',
|
||||
},
|
||||
mode: 'development',
|
||||
devServer: {
|
||||
open: true
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user