Michał

Results 3 comments of Michał

@huozhi it's warning not error. If you think that it works as expected it should throw error and not start. `"next start" does not work with "output: standalone" configuration.` -...

@huozhi I tested it standalone mode as well before I created an issue, and got following error: ```bash ➜ next13-test git:(main) ✗ node .next/standalone/server.js (node:94767) ExperimentalWarning: stream/web is an experimental...

@huozhi you add middleware to project? ```ts // middleware.ts import { NextRequest, NextResponse } from "next/server"; const PUBLIC_FILE = /\.(.*)$/; export async function middleware(req: NextRequest) { if ( req.nextUrl.pathname.startsWith("/_next") ||...