Skip to content

Commit

Permalink
fix(server): use full relative paths for imports
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Jun 14, 2021
1 parent 9711cb2 commit aafcf8b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/server.js
Expand Up @@ -4,10 +4,10 @@ import cors from "cors";
import express from "express";
import yargs from "yargs";

import fixtureServereMiddleware from "..";
import globTofixtures from "../lib/glob-to-fixtures";
import fixtureServereMiddleware from "../index.js";
import globTofixtures from "../lib/glob-to-fixtures.js ";

import DEFAULTS from "../lib/defaults";
import DEFAULTS from "../lib/defaults.js";

// NOW_URL: support deployment to now.sh: https://zeit.co/docs/features/env-and-secrets
const defaultFixtureUrl =
Expand Down

0 comments on commit aafcf8b

Please sign in to comment.