joyent-portal/legacy/spikes/graphql/apollo-redux/scripts/config-overrides.dev.js

15 lines
340 B
JavaScript
Raw Normal View History

const path = require('path');
module.exports = function(config) {
// Add support for loading .graphql files
config.module.loaders[0].exclude.push(/\.(graphql|gql)$/);
config.module.loaders.push({
test: /\.(graphql|gql)$/,
exclude: /node_modules/,
loader: require.resolve('graphql-tag/loader'),
});
return config;
}