我有一个基于vue-cli 3的新项目,该项目在.graphql
文件夹中有src/
个文件,例如:
#import "./track-list-fragment.graphql"
query ListTracks(
$sortBy: String
$order: String
$limit: Int
$nextToken: String
) {
listTracks(
sortBy: $sortBy
order: $order
limit: $limit
nextToken: $nextToken
) {
items {
...TrackListDetails
}
nextToken
}
}
当我运行yarn serve
时,它抱怨没有GraphQL的加载器:
Module parse failed: Unexpected character '#' (1:0)
You may need an appropriate loader to handle this file type.
> #import "./track-list-fragment.graphql"
|
| query ListTracks(
但是我确实正确设置了vue.config.js
:
const webpack = require('webpack');
const path = require('path');
module.exports = {
configureWebpack: {
resolve: {
alias: {
$scss: path.resolve('src/assets/styles'),
},
},
plugins: [
new webpack.LoaderOptionsPlugin({
test: /\.graphql$/,
loader: 'graphql-tag/loader',
}),
],
},
};
我该如何解决?
答案 0 :(得分:3)
这行得通!
const path = require('path');
module.exports = {
pluginOptions: {
i18n: {
locale: 'en',
fallbackLocale: 'en',
localeDir: 'locales',
enableInSFC: false,
},
},
configureWebpack: {
resolve: {
alias: {
$element: path.resolve(
'node_modules/element-ui/packages/theme-chalk/src/main.scss'
),
},
},
},
chainWebpack: config => {
config.module
.rule('graphql')
.test(/\.graphql$/)
.use('graphql-tag/loader')
.loader('graphql-tag/loader')
.end();
},
};
答案 1 :(得分:1)
我很确定LoaderOptionsPlugin不是您想要的。 webpack文档提到这是用于从webpack 1迁移到webpack2。这不是我们在这里所做的。
这是"normal" webpack config中配置加载程序的样子:
module.exports = {
module: {
rules: [
{
test: /\.css$/,
use: [
{ loader: 'style-loader' },
{
loader: 'css-loader',
options: {
modules: true
}
}
]
}
]
}
};
按照这种方法并假设我正确理解了Vue 3 docs,这就是我如何使用原始示例数据配置Vue 3应用程序的方法:
module.exports = {
configureWebpack: {
module: {
rules: [
{
test: /\.css$/,
use: [
{ loader: 'style-loader' },
{
loader: 'css-loader',
options: {
modules: true
}
}
]
}
]
}
}
}
现在,我们需要配置graphql loader而不是css loader:
module.exports = {
configureWebpack: {
module: {
rules: [
{
test: /\.graphql$/,
use: 'graphql-tag/loader'
}
]
}
}
}
这是未经测试的,我只是不了解Webpack和Vue文档。我没有一个项目可以对此进行测试,但是如果您将链接发布到项目,我会很乐意进行测试。