0👍
By default webpack has no configuration for gql
or graphql
files. You need to add the configuration explicitly.
install required package.
npm i graphql-tag --save
Then configure webpack.
module: {
rules: [
{
test: /\.(graphql|gql)$/,
exclude: /node_modules/,
loader: 'graphql-tag/loader',
},
],
},
- [Vuejs]-Don't let a user to use same item for different select inputs
- [Vuejs]-Pass data from child component to parent component Vuetify
Source:stackexchange.com