I'm deploying my first react web app, but I'm running into this error:
Failed to compile.
./src/scss/style.scss
ParserError: Syntax Error at line: 1, column 62
I started it using create-react-app, and added CoreUI. npm start compiles and runs great in the browser. When I inspect style.scss from the browser, I get this:
@charset "UTF-8";
/*!
* CoreUI - HTML, CSS, and JavaScript UI Components Library
* @version v4.2.6
* @link https://coreui.io/
* Copyright (c) 2022 creativeLabs Łukasz Holeczek
* License MIT (https://coreui.io/license/)
*/
:root {
--cui-blue: #0d6efd;
--cui-indigo: #6610f2;
--cui-purple: #6f42c1;
--cui-pink: #d63384;
--cui-red: #dc3545;
--cui-orange: #fd7e14;
--cui-yellow: #ffc107;
--cui-green: #198754;
--cui-teal: #20c997;
--cui-cyan: #0dcaf0;
--cui-black: #000015;
--cui-white: #ffffff;
I don't see anything that looks like a culprit.
I've looked in the build folder, and it's not producing a style.scss file.
Beyond looking at that, I really don't know how to figure out what might be causing that error.