浮声新志

webpack插件篇:WebpackPluginGraphqlSchemaHot详解

用途说明

WebpackPluginGraphqlSchemaHot ()

This plugin tracks changes in your GraphQL Schema and generates its introspection in json and txt formats.

webpack.config.js配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const path = require('path');
const WebpackPluginGraphqlSchemaHot = require('webpack-plugin-graphql-schema-hot');
var plugins = [];
{
plugins: [
new WebpackPluginGraphqlSchemaHot({
schemaPath: path.resolve(__dirname, '../schema/index.js'),
output: {
json: path.resolve(__dirname, '../build/schema.graphql.json'),
txt: path.resolve(__dirname, '../build/schema.graphql.txt'),
},
runOnStart: true,
verbose: true,
hideErrors: false,
}),
]
}

案例

1
2