UNPKG
@moonee/nx-next12-plugin
Version:
latest (1.0.0)
1.0.0
Nx plugin for Next.js 12 integration
@moonee/nx-next12-plugin
/
dist
/
executors
/
serve
/
executor.d.ts
10 lines
(9 loc)
•
285 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
ExecutorContext
}
from
'@nx/devkit'
;
export
interface
NextServeExecutorOptions
{
port
:
number
;
hostname
:
string
;
dev
?:
boolean
; }
export
default
function
runExecutor
(
options
:
NextServeExecutorOptions
,
context
:
ExecutorContext
):
Promise
<{
success
:
boolean
; }>;