File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed
packages/runtime/src/helpers Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,9 @@ ignore = "if [ $CACHED_COMMIT_REF == $COMMIT_REF ]; then (exit 1); else git diff
6
6
[build .environment ]
7
7
NEXT_USE_NETLIFY_EDGE = " true"
8
8
9
- # [[plugins]]
10
- # package = "@netlify/plugin-nextjs"
9
+ [[plugins ]]
10
+ package = " ../plugin-wrapper/"
11
+
11
12
# This is a fake plugin, that makes it run npm install
12
13
[[plugins ]]
13
14
package = " @netlify/plugin-local-install-core"
@@ -17,13 +18,12 @@ included_files = [
17
18
" !node_modules/sharp/vendor/8.12.2/darwin-*/**/*" ,
18
19
" !node_modules/sharp/build/Release/sharp-darwin-*"
19
20
]
20
-
21
21
# [dev]
22
22
# framework = "#static"
23
- [[redirects ]]
24
- from = " /_next/static/*"
25
- to = " /static/:splat"
26
- status = 200
23
+ # [[redirects]]
24
+ # from = "/_next/static/*"
25
+ # to = "/static/:splat"
26
+ # status = 200
27
27
# [[redirects]]
28
28
# from = "/*"
29
29
# to = "/.netlify/functions/___netlify-handler"
Original file line number Diff line number Diff line change @@ -377,7 +377,6 @@ export const patchNextFiles = async (root: string): Promise<void> => {
377
377
}
378
378
379
379
export const unpatchFile = async ( file : string ) : Promise < void > => {
380
- return
381
380
const origFile = `${ file } .orig`
382
381
if ( existsSync ( origFile ) ) {
383
382
await move ( origFile , file , { overwrite : true } )
You can’t perform that action at this time.
0 commit comments