diff options
author | Max Magorsch <arzano@gentoo.org> | 2020-06-04 00:45:52 +0200 |
---|---|---|
committer | Max Magorsch <arzano@gentoo.org> | 2020-06-04 01:03:24 +0200 |
commit | 32490d664f3040c690a5661b7f3eabcbb3024090 (patch) | |
tree | 0b0ae741b6429e2d2144e9adbdf5642f24231948 /webpack.config.js | |
parent | Disable cors for the api (diff) | |
download | soko-32490d664f3040c690a5661b7f3eabcbb3024090.tar.gz soko-32490d664f3040c690a5661b7f3eabcbb3024090.tar.bz2 soko-32490d664f3040c690a5661b7f3eabcbb3024090.zip |
Add graphiql at /api/explore/
Graphiql can be used to explore the graphql
api. It can also be used to browse the docs
of the schema.
Finally it also includes exemplary queries.
Signed-off-by: Max Magorsch <arzano@gentoo.org>
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/webpack.config.js b/webpack.config.js index a3be9c4..5587e45 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -5,6 +5,7 @@ module.exports = { entry: { stylesheets: './web/packs/stylesheets.js', application: './web/packs/application.js', + graphiql: './web/packs/graphiql.js', index: './web/packs/index.js', packages: './web/packs/packages.js', useflags: './web/packs/useflags.js', |