This commit is contained in:
Kamran Ahmed
2019-08-24 18:34:46 +04:00
parent 93dc65b529
commit 8c77a26627
5 changed files with 1112 additions and 37 deletions

3
.gitignore vendored
View File

@ -1,4 +1,5 @@
.next .next
.idea .idea
.DS_Store .DS_Store
node_modules node_modules
yarn-error.log

3
next.config.js Normal file
View File

@ -0,0 +1,3 @@
const withSass = require('@zeit/next-sass');
module.exports = withSass({});

View File

@ -9,7 +9,9 @@
"start": "next start" "start": "next start"
}, },
"dependencies": { "dependencies": {
"@zeit/next-sass": "^1.0.1",
"next": "^9.0.4", "next": "^9.0.4",
"node-sass": "^4.12.0",
"react": "^16.9.0", "react": "^16.9.0",
"react-dom": "^16.9.0" "react-dom": "^16.9.0"
} }

5
postcss.config.js Normal file
View File

@ -0,0 +1,5 @@
module.exports = {
plugins: {
'postcss-css-variables': {},
},
};

1136
yarn.lock

File diff suppressed because it is too large Load Diff