mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 01:54:18 -08:00
* Addresses issue #16 - Add styles via sass and module imports Adds typed scss imports via gatsby-plugin-sass. Makes use of .d.scss file generated by gatsby-plugin-scss-typescript, but avoids importing that directly while they work out issue in gatsby v3. * adding vscode config for easier local debugging
34 lines
No EOL
844 B
JSON
34 lines
No EOL
844 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"name": "Debug Chrome",
|
|
"url": "http://localhost:8000",
|
|
"webRoot": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"name": "Gatsby develop",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"protocol": "inspector",
|
|
"program": "${workspaceRoot}/node_modules/gatsby/dist/bin/gatsby",
|
|
"args": ["develop"],
|
|
"stopOnEntry": false,
|
|
"runtimeArgs": ["--nolazy"],
|
|
"sourceMaps": false
|
|
},
|
|
{
|
|
"name": "Gatsby build",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"protocol": "inspector",
|
|
"program": "${workspaceRoot}/node_modules/gatsby/dist/bin/gatsby",
|
|
"args": ["build"],
|
|
"stopOnEntry": false,
|
|
"runtimeArgs": ["--nolazy"],
|
|
"sourceMaps": false
|
|
}
|
|
]
|
|
} |