Skip to content

Commit

Permalink
fix(core): Fix incorrect GraphiQL output path
Browse files Browse the repository at this point in the history
  • Loading branch information
toBeOfUse committed Nov 30, 2024
1 parent f801e22 commit 4a197e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/graphiql/output/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!doctype html><html lang="en"><head><title>Vendure GraphiQL Playground :D</title><style>body {
<!doctype html><html lang="en"><head><title>GraphiQL Playground</title><style>body {
height: 100%;
margin: 0;
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/graphiql/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const webpack = require('webpack');
module.exports = {
entry: path.resolve(__dirname, 'index.mjs'),
output: {
path: path.resolve(__dirname, 'dist'),
path: path.resolve(__dirname, 'output'),
clean: true,
publicPath: '',
},
Expand Down

0 comments on commit 4a197e0

Please sign in to comment.