If you want to add more scss webpack loaders into your create react app without the need of ejecting in react, then Rewire your app and install this package that can include that extra loader for you.
yarn add react-app-rewired react-app-rewire-scss-loaders -D
npm install react-app-rewired react-app-rewire-scss-loaders --save-dev
Firstly Rewire your app then create/modify your config-overrides.js
Secondly (as example) if you want to share global scss variables across your project without importing files then try this example sass-resources-loader.
/* config-overrides.js */
const addRewireScssLoader = require("react-app-rewire-scss-loaders");
module.exports = function override(config, env) {
config = addRewireScssLoader("sass-resources-loader", {
resources: path.resolve(__dirname, "variables.scss"),
})(config, env);
return config;
};