- 
  Notifications
 You must be signed in to change notification settings 
- Fork 32
Sanity check - am I using this crate correctly? Doesn't seem to work for me for some reason when attempting to use with Vite #29
Description
Summary
I have a workaround more or less; not for this issue exactly but it's just a way for me to keep working. Anyways I still wanted to ask out of curiosity.
I am trying to build a Vite plugin that loads a WASM module. I used the wasm-bindgen template as my starting point. In it, it provides a utils.rs file which declares
pub fn set_panic_hook() {
 // When the `console_error_panic_hook` feature is enabled, we can call the
 // `set_panic_hook` function at least once during initialization, and then
 // we will get better error messages if our code ever panics.
 //
 // For more details see
 // https://github.com/rustwasm/console_error_panic_hook#readme
 #[cfg(feature = "console_error_panic_hook")]
 console_error_panic_hook::set_once();
}
Currently when I attempt to use the function, I unfortunately am unable to get any specific error message/issue output from the console. I still see the general "unreachable" error and then a stack trace pointing to a memory location in the WASM module.
Even with a very simple test case like
pub fn process_file(){
 set_panic_hook();
 panic!("test");
}
I still get the general "unreachable" message.
Additional Details
Not sure if it might be the issue but maybe the issue lies somewhere in the interaction with Vite?
Thanks!