Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(nuxt): Describe run script more precisely #11064

Merged
merged 2 commits into from
Aug 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions platform-includes/getting-started-config/javascript.nuxt.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,15 @@ Sentry.init({
});
```

2. Add an `--import` flag to the `NODE_OPTIONS` environment variable wherever you run your application.
2. Add an `--import` flag to the `NODE_OPTIONS` environment variable wherever you run your application's production build output.
For local previews, update your `nuxt preview` script in the `package.json` (see below).
Also, ensure this environment variable is set in your deployment environment, such as on Netlify or Vercel.

```json {filename:package.json}
{
"scripts": {
"preview": "NODE_OPTIONS='--import ./public/instrument.server.mjs' nuxt preview"
"preview": "NODE_OPTIONS='--import ./public/instrument.server.mjs' nuxt preview",
"start": "node --import .output/public/instrument.server.mjs .output/server/index.mjs"
}
}
```
Loading