mirror of
https://github.com/Unkn0wnCat/KevinK.dev.js.git
synced 2025-05-29 08:46:38 +02:00
Work around error intoduced in gatsby-plugin-sass@4.0.1
This commit is contained in:
parent
f9014c7f83
commit
54bcb1b7a7
9 changed files with 551 additions and 548 deletions
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"i18n-ally.localesPaths": "locales"
|
||||
}
|
6
package-lock.json
generated
6
package-lock.json
generated
|
@ -12511,9 +12511,9 @@
|
|||
}
|
||||
},
|
||||
"gatsby-plugin-sass": {
|
||||
"version": "4.0.1",
|
||||
"resolved": "https://registry.npmjs.org/gatsby-plugin-sass/-/gatsby-plugin-sass-4.0.1.tgz",
|
||||
"integrity": "sha512-QZiak/7eL58QUZy+y5zTlTWk+qiE/xtXa/eS+CvHP09hbxtGeVn2Ea3XQ9upHxM2TjKaWQJ00EjnKnoVKoxzVQ==",
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/gatsby-plugin-sass/-/gatsby-plugin-sass-4.0.0.tgz",
|
||||
"integrity": "sha512-q2FIQFFU7FMgX8jMGUCsBMUcmdNdVertE1HnViiriB1x5FagUJUUJe9Z6Irq14h0LfSL2Z1Lg8iQzgxSX30djw==",
|
||||
"requires": {
|
||||
"@babel/runtime": "^7.12.5",
|
||||
"resolve-url-loader": "^3.1.2",
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
"gatsby-plugin-react-helmet": "4.0.0",
|
||||
"gatsby-plugin-react-i18next": "1.0.4",
|
||||
"gatsby-plugin-robots-txt": "1.5.5",
|
||||
"gatsby-plugin-sass": "4.0.1",
|
||||
"gatsby-plugin-sass": "^4.0.0",
|
||||
"gatsby-plugin-sharp": "3.0.0",
|
||||
"gatsby-plugin-sitemap": "3.0.0",
|
||||
"gatsby-source-filesystem": "3.0.0",
|
||||
|
|
|
@ -4,7 +4,7 @@ import { graphql } from "gatsby";
|
|||
import { Trans, useI18next, I18nextContext } from "gatsby-plugin-react-i18next"
|
||||
import PropTypes from "prop-types"
|
||||
|
||||
import styles from "./donate.module.scss";
|
||||
import * as styles from "./donate.module.scss";
|
||||
|
||||
export const query = graphql`
|
||||
query ($language: String!) {
|
||||
|
|
|
@ -4,7 +4,7 @@ import { Trans, useI18next } from "gatsby-plugin-react-i18next"
|
|||
import { graphql } from 'gatsby'
|
||||
import PropTypes from "prop-types"
|
||||
|
||||
import styles from "./friends.module.scss";
|
||||
import * as styles from "./friends.module.scss";
|
||||
|
||||
export const query = graphql`
|
||||
query AllFriendsQuery($language: String!) {
|
||||
|
|
|
@ -2,8 +2,8 @@ import * as React from "react"
|
|||
import Layout from "../layouts/default"
|
||||
import PropTypes from "prop-types"
|
||||
|
||||
import styles from "./index.module.scss"
|
||||
import projectStyles from "./projects.module.scss"
|
||||
import * as styles from "./index.module.scss"
|
||||
import * as projectStyles from "./projects.module.scss"
|
||||
|
||||
import { Trans, Link } from "gatsby-plugin-react-i18next"
|
||||
import { graphql } from "gatsby";
|
||||
|
|
|
@ -4,7 +4,7 @@ import { Trans, Link, useI18next } from "gatsby-plugin-react-i18next"
|
|||
import { graphql } from 'gatsby'
|
||||
import PropTypes from "prop-types"
|
||||
|
||||
import styles from "./projects.module.scss";
|
||||
import * as styles from "./projects.module.scss";
|
||||
|
||||
export const query = graphql`
|
||||
query GetProjects($language: String) {
|
||||
|
|
|
@ -4,7 +4,7 @@ import { Trans, Link, useI18next } from "gatsby-plugin-react-i18next"
|
|||
import { graphql } from 'gatsby'
|
||||
import PropTypes from "prop-types"
|
||||
|
||||
import styles from "./social.module.scss";
|
||||
import * as styles from "./social.module.scss";
|
||||
|
||||
export const query = graphql`
|
||||
query AllSocialsQuery($language: String!) {
|
||||
|
|
|
@ -4,7 +4,7 @@ import { Trans, useTranslation } from 'gatsby-plugin-react-i18next';
|
|||
import Layout from "../layouts/default";
|
||||
import PropTypes from "prop-types"
|
||||
|
||||
import styles from "./project.module.scss";
|
||||
import * as styles from "./project.module.scss";
|
||||
|
||||
export const query = graphql`
|
||||
query GetProject($urlname: String!, $lang: String!, $language: String!) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue