From 3c225b54299632da0ad5bcd8fb1edfddaa504e1b Mon Sep 17 00:00:00 2001 From: Vitaly Baev Date: Sat, 12 Jun 2021 01:58:00 +0300 Subject: [PATCH] (examples/with-react-md): switch from node-sass to sass (#26001) ## Documentation / Examples - [x] Make sure the linting passes Continuing fixing #25854 Switching from `node-sass` to `sass` --- examples/with-react-md/README.md | 6 ++++++ examples/with-react-md/package.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/examples/with-react-md/README.md b/examples/with-react-md/README.md index d3043a1ee5e17..10c3e714b215c 100644 --- a/examples/with-react-md/README.md +++ b/examples/with-react-md/README.md @@ -18,6 +18,12 @@ the [main documentation](https://react-md.dev). You can also view the for a more complex example of using ReactMD + Next.js or the [with-react-md-typescript](../with-react-md-typescript) example for Typescript support. +## Preview + +Preview the example live on [StackBlitz](http://stackblitz.com/): + +[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/vercel/next.js/tree/canary/examples/with-react-md) + ## Deploy your own Deploy the example using [Vercel](https://vercel.com?utm_source=github&utm_medium=readme&utm_campaign=next-example): diff --git a/examples/with-react-md/package.json b/examples/with-react-md/package.json index d1bc50c183381..6d46f6de15855 100644 --- a/examples/with-react-md/package.json +++ b/examples/with-react-md/package.json @@ -15,6 +15,6 @@ "react-md": "^2.1.1" }, "devDependencies": { - "node-sass": "^4.14.1" + "sass": "^1.34.1" } }