You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update bug_report.yml
* Update bug_report.yml
* Update .github/ISSUE_TEMPLATE/bug_report.yml
Co-authored-by: Matt Kane <[email protected]>
* Update .github/ISSUE_TEMPLATE/bug_report.yml
Co-authored-by: Matt Kane <[email protected]>
* Update bug_report.yml
Co-authored-by: Matt Kane <[email protected]>
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug_report.yml
+77-4Lines changed: 77 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,17 @@ body:
6
6
- type: markdown
7
7
attributes:
8
8
value: |
9
-
Thanks for taking the time to fill out this bug report!
9
+
Thanks for taking the time to fill out this bug report! Using this template makes it a lot easier for us to diagnose your problem, so please fill in as many fields as possible.
10
+
11
+
- type: textarea
12
+
id: description
13
+
attributes:
14
+
label: Summary
15
+
description: A short description of the problem
16
+
placeholder: |
17
+
Include what you expected to happen, and what actually happened.
18
+
validations:
19
+
required: true
10
20
- type: textarea
11
21
id: steps-to-reproduce
12
22
attributes:
@@ -59,7 +69,7 @@ body:
59
69
- type: textarea
60
70
id: netlify-toml
61
71
attributes:
62
-
label: Your `netlify.toml` file
72
+
label: Your netlify.toml file
63
73
description: (If you're using file-based config) Please provide a copy of your `netlify.toml` file.
64
74
value: |
65
75
<details>
@@ -72,9 +82,39 @@ body:
72
82
</details>
73
83
74
84
- type: textarea
75
-
id: logs
85
+
id: redirects-file
86
+
attributes:
87
+
label: Your public/_redirects file
88
+
description: Please provide a copy of your `_redirects` file if you have one.
89
+
value: |
90
+
<details>
91
+
<summary>`_redirects`</summary>
92
+
93
+
```toml
94
+
# Paste content of your `_redirects` file here
95
+
```
96
+
97
+
</details>
98
+
99
+
- type: textarea
100
+
id: next-config
101
+
attributes:
102
+
label: Your `next.config.js` file
103
+
description: Please provide a copy of your `next.config.js` file.
104
+
value: |
105
+
<details>
106
+
<summary>`next.config.js`</summary>
107
+
108
+
```toml
109
+
# Paste content of your `next.config.js` file here. Check there is no private info in there.
110
+
```
111
+
112
+
</details>
113
+
114
+
- type: textarea
115
+
id: build-logs
76
116
attributes:
77
-
label: Relevant log output (or link to your logs)
117
+
label: Builds logs (or link to your logs)
78
118
value: |
79
119
<details>
80
120
<summary>Build logs</summary>
@@ -84,3 +124,36 @@ body:
84
124
```
85
125
86
126
</details>
127
+
128
+
- type: textarea
129
+
id: function-logs
130
+
attributes:
131
+
label: Function logs
132
+
description: If it is a runtime error, please provide a copy of the relevant function logs.
133
+
value: |
134
+
<details>
135
+
<summary>Function logs</summary>
136
+
137
+
```
138
+
# Paste logs here
139
+
```
140
+
141
+
</details>
142
+
143
+
- type: textarea
144
+
145
+
id: next-build
146
+
attributes:
147
+
label: .next JSON files
148
+
description:
149
+
(e.g. `.next/required-server-files.json`, `.next/routes-manifest.json` and `.next/prerender-manifest.json`).
150
+
value: |
151
+
<details>
152
+
<summary>generated .next JSON files</summary>
153
+
154
+
```
155
+
# Paste file contents here. Please check there isn't any private info in them
156
+
# You can either build locally, or download the deploy from Netlify by clicking the arrow next to the deploy time.
0 commit comments