mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-01-17 22:28:32 +01:00
Add sass
This commit is contained in:
parent
93dc65b529
commit
8c77a26627
1
.gitignore
vendored
1
.gitignore
vendored
@ -2,3 +2,4 @@
|
||||
.idea
|
||||
.DS_Store
|
||||
node_modules
|
||||
yarn-error.log
|
3
next.config.js
Normal file
3
next.config.js
Normal file
@ -0,0 +1,3 @@
|
||||
const withSass = require('@zeit/next-sass');
|
||||
|
||||
module.exports = withSass({});
|
@ -9,7 +9,9 @@
|
||||
"start": "next start"
|
||||
},
|
||||
"dependencies": {
|
||||
"@zeit/next-sass": "^1.0.1",
|
||||
"next": "^9.0.4",
|
||||
"node-sass": "^4.12.0",
|
||||
"react": "^16.9.0",
|
||||
"react-dom": "^16.9.0"
|
||||
}
|
||||
|
5
postcss.config.js
Normal file
5
postcss.config.js
Normal file
@ -0,0 +1,5 @@
|
||||
module.exports = {
|
||||
plugins: {
|
||||
'postcss-css-variables': {},
|
||||
},
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user