|
| 1 | +# This issue template is based on https://github.com/vitejs/vite/tree/main/.github/ISSUE_TEMPLATE |
| 2 | +name: "\U0001F41E Bug report" |
| 3 | +description: Report an issue with @lazarv/react-server |
| 4 | +labels: [pending triage] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for taking the time to fill out this bug report! |
| 10 | + - type: textarea |
| 11 | + id: bug-description |
| 12 | + attributes: |
| 13 | + label: Describe the bug |
| 14 | + description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks! |
| 15 | + placeholder: I am doing ... What I expect is ... What actually happening is ... |
| 16 | + validations: |
| 17 | + required: true |
| 18 | + - type: input |
| 19 | + id: reproduction |
| 20 | + attributes: |
| 21 | + label: Reproduction |
| 22 | + description: Please provide a link to a repo that can reproduce the problem you ran into. Please provide a [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) if possible. |
| 23 | + placeholder: Reproduction URL |
| 24 | + - type: textarea |
| 25 | + id: reproduction-steps |
| 26 | + attributes: |
| 27 | + label: Steps to reproduce |
| 28 | + description: Please provide any reproduction steps that may need to be described. E.g. if it happens only when running the dev or build script make sure it's clear which one to use. |
| 29 | + placeholder: Run `npm install` followed by `npm run dev` |
| 30 | + - type: textarea |
| 31 | + id: system-info |
| 32 | + attributes: |
| 33 | + label: System Info |
| 34 | + description: Output of `npx envinfo --system --npmPackages '{@lazarv/react-server,@lazarv/react-server-*,react,react-dom,react-server-dom-webpack,vite}' --binaries --browsers` |
| 35 | + render: shell |
| 36 | + placeholder: System, Binaries, Browsers |
| 37 | + validations: |
| 38 | + required: true |
| 39 | + - type: dropdown |
| 40 | + id: package-manager |
| 41 | + attributes: |
| 42 | + label: Used Package Manager |
| 43 | + description: Select the used package manager |
| 44 | + options: |
| 45 | + - npm |
| 46 | + - yarn |
| 47 | + - pnpm |
| 48 | + validations: |
| 49 | + required: true |
| 50 | + - type: textarea |
| 51 | + id: logs |
| 52 | + attributes: |
| 53 | + label: Logs |
| 54 | + description: | |
| 55 | + Optional if provided reproduction. Please try not to insert an image but copy paste the log text. |
| 56 | +
|
| 57 | + 1. Run `react-server` or `react-server build` with the `DEBUG=*` environment variable set. |
| 58 | + 2. Provide the error log here in the format below. |
| 59 | +
|
| 60 | + ```` |
| 61 | + <details> |
| 62 | + <summary>Click to expand!</summary> |
| 63 | +
|
| 64 | + ```shell |
| 65 | + // paste the log text here |
| 66 | + ``` |
| 67 | + </details> |
| 68 | + ```` |
| 69 | + - type: checkboxes |
| 70 | + id: checkboxes |
| 71 | + attributes: |
| 72 | + label: Validations |
| 73 | + description: Before submitting the issue, please make sure you do the following |
| 74 | + options: |
| 75 | + - label: Follow our [Code of Conduct](https://github.com/lazarv/react-server/blob/main/CODE_OF_CONDUCT.md) |
| 76 | + required: true |
| 77 | + - label: Read the [Contributing Guidelines](https://github.com/lazarv/react-server/blob/main/CONTRIBUTING.md). |
| 78 | + required: true |
| 79 | + - label: Read the [docs](https://react-server.dev). |
| 80 | + required: true |
| 81 | + - label: Check that there isn't [already an issue](https://github.com/lazarv/react-server/issues) that reports the same bug to avoid creating a duplicate. |
| 82 | + required: true |
| 83 | + - label: Check that this is a concrete bug. For Q&A open a [GitHub Discussion](https://github.com/lazarv/react-server/discussions). |
| 84 | + required: true |
| 85 | + - label: The provided reproduction is a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) of the bug. |
| 86 | + required: true |
0 commit comments