diff --git a/client/package.json b/client/package.json index 187a71a..8e6a5b7 100644 --- a/client/package.json +++ b/client/package.json @@ -9,7 +9,7 @@ "private": true, "scripts": { "build": "react-scripts build", - "start": "cd client && node ../node_modules/react-scripts/scripts/start.js" + "start": "node node_modules/react-scripts/scripts/start.js" }, "dependencies": { "axios": "^0.18.0", @@ -18,4 +18,4 @@ "react-scripts": "1.1.4" } } - \ No newline at end of file + diff --git a/config/packages/api_platform.yaml b/config/packages/api_platform.yaml index b35a904..dadcdcc 100644 --- a/config/packages/api_platform.yaml +++ b/config/packages/api_platform.yaml @@ -162,8 +162,8 @@ api_platform: # The list of enabled formats. The first one will be the default. formats: - jsonld: - mime_types: ['application/ld+json'] + # jsonld: + # mime_types: ['application/ld+json'] json: mime_types: ['application/json'] @@ -178,7 +178,7 @@ api_platform: jsonproblem: mime_types: ['application/problem+json'] - jsonld: - mime_types: ['application/ld+json'] + # jsonld: + # mime_types: ['application/ld+json'] # ... \ No newline at end of file diff --git a/makefile b/makefile index 557e9c0..b75052e 100644 --- a/makefile +++ b/makefile @@ -5,7 +5,7 @@ install: npm install; api-start: - bin/console server:start *:3000; + bin/console server:start *:8000; api-stop: bin/console server:stop;