Skip to content

Commit

Permalink
adds sdp2
Browse files Browse the repository at this point in the history
  • Loading branch information
kmarshgov committed Mar 20, 2024
1 parent bf88599 commit 2a7b89b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
21 changes: 21 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
const defaultTheme = require('tailwindcss/defaultTheme');

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.vue',
],

theme: {
extend: {
fontFamily: {
sans: ['Nunito', ...defaultTheme.fontFamily.sans],
},
},
},

plugins: [require('@tailwindcss/forms')],
};
2 changes: 0 additions & 2 deletions webpack.mix.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ const mix = require('laravel-mix');
*/

mix.js('resources/js/app.js', 'public/js')
.copyDirectory('resources/images', 'public/images')

.vue()
.postCss('resources/css/app.css', 'public/css', [require('tailwindcss'), require('autoprefixer')])
.alias({
Expand Down

0 comments on commit 2a7b89b

Please sign in to comment.