Dynamic Import (experimental)

Learn about how the SolidStart SDK leverages dynamic input() in the build output.

The import() expression, or dynamic import, enables flexible, conditional module loading in ESM. Node.js will generate a separate module graph for any code wrapped in a dynamic import(). This separate graph is evaluated after all modules, which are statically imported.

By using the Sentry SolidStart SDK, the server-side application will be wrapped in a dynamic import(), while the Sentry configuration will be imported with a static import. This makes it possible to initialize the Sentry SolidStart SDK at startup, while the Nitro server runtime loads later because it is import()ed. This early initialization of Sentry is required to correctly set up the SDK's instrumentation of various libraries.

Depending on your setup and which version of Vinxi is used (and respectively Nitro, as this runs under the hood), the server-side is sometimes not correctly initialized. The build output must not include a regular import of the Nitro runtime (e.g. import './chunks/nitro/nitro.mjs').

You can also check out the guide for installing the SDK with the CLI flag --import or limited-server-tracing.

Enable the dynamic import() by setting autoInjectServerSentry:

app.config.ts
Copied
import { defineConfig } from "@solidjs/start/config";
import { withSentry } from "@sentry/solidstart";

export default defineConfig(
  withSentry(
    {},
    {
      autoInjectServerSentry: "experimental_dynamic-import",
    },
  ),
);

After setting this, the Sentry SolidStart SDK will add build-time configuration so that your app will be wrapped with import(), ensuring that Sentry can be initialized before any other modules.

The SolidStart server entry file will look something like this:

.output/server/index.mjs
Copied
// Note: The file may have some imports and code, related to debug IDs
Sentry.init({
  dsn: "...",
});

import("./chunks/nitro/nitro.mjs").then(function (n) {
  return n.r;
});

Sentry automatically detects serverless handler functions in the build output and re-exports them from the server entry file.

By default, Sentry re-exports functions named handler, server, and default exports. This will work in most cases and no other action is required. If your serverless function has a custom name, you can override it with experimental_entrypointWrappedFunctions:

app.config.ts
Copied
import { defineConfig } from "@solidjs/start/config";
import { withSentry } from "@sentry/solidstart";

export default defineConfig(
  withSentry(
    {},
    {
      autoInjectServerSentry: "experimental_dynamic-import",
      // Customize detected function names
      // Default value: ['default', 'handler', 'server']
      experimental_entrypointWrappedFunctions: ["customFunctionName"],
    },
  ),
);
Help improve this content
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) or suggesting an update ("yeah, this would be better").