Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/e2e/global-setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ export default async function globalSetup() {
} else {
console.log("⏳ Building Next.js (production)...");
}
execSync("npx next build", {
execSync("npx next build --webpack", {
cwd: appDir,
stdio: "inherit",
env: serverEnv,
Expand Down
2 changes: 1 addition & 1 deletion app/src/plugins/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ for (const t of CHART_TYPES) {
// 2. Validate compatibleWith references actual connector types.
// Uses the canonical CONNECTOR_TYPES from the connection package
// so new connectors are automatically recognized.
import { CONNECTOR_TYPES as KNOWN_CONNECTOR_LIST } from "@neoboard/connection";
import { CONNECTOR_TYPES as KNOWN_CONNECTOR_LIST } from "@neoboard/connection/connector-types";
const KNOWN_CONNECTORS = new Set<string>(KNOWN_CONNECTOR_LIST);
for (const type of pluginRegistry.getTypes()) {
const plugin = pluginRegistry.get(type);
Expand Down
Loading