docs
devtools
Setup Devtools

Setup Devtools

You can use the devtool right away by installing the zely-dev package and registering the plugin in zely.config.ts.

WARNING

When devtool is enabled, data from the server cannot be properly fetched using normal fetch.

Typescript
import { defineConfig } from '@zely-js/zely';
import { devtool } from 'zely-dev';
 
export default defineConfig({
  plugins: [devtool()],
});