@minaremonshaker You would just add another input in your vite.config.js file for your dashboard:
export default defineConfig({
plugins: [
laravel({
input: [
'resources/css/app.css',
'resources/js/app.js',
+ 'resources/sass/dashboard.scss',
],
refresh: true,
}),
tailwindcss(),
],
});
Then create your resources/sass/dashboard.scss file:
@import "variables";
@import "bootstrap/scss/bootstrap";
This will import a custom variables file located at resources/sass/_variables.scss (you will need to create this file as well as it does not exist by default).