Skip to content

Commit

Permalink
- lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EwelinaSkrzypacz committed Dec 10, 2024
1 parent fab29b1 commit 210b40c
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import blumilkDefault from '@blumilksoftware/eslint-config'

export default [
...blumilkDefault,
...blumilkDefault,
]
26 changes: 13 additions & 13 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ import typography from '@tailwindcss/typography'

module.exports = {
content: {
relative: true,
files: [
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
},
relative: true,
files: [
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
},
theme: {
screens: {
'sm': '640px',
Expand All @@ -29,7 +29,7 @@ module.exports = {
extraDark: '#EAEBF3',
},
blue: {
dark: "#0E0B3D",
dark: '#0E0B3D',
normalNeon: '#3461fd',
normal: '#3259E8',
light: '#F7F8FD',
Expand All @@ -38,7 +38,7 @@ module.exports = {
tile: {
title: '#0E0B3D',
content: '#6B7280',
background: '#F7F8FB'
background: '#F7F8FB',
},
brand: '#527ABA',
website: {
Expand Down Expand Up @@ -70,10 +70,10 @@ module.exports = {
decimal: 'decimal',
alpha: 'lower-alpha',

}
},
},
plugins: [
forms,
typography,
forms,
typography,
],
};
}
44 changes: 22 additions & 22 deletions vite.config.js
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
import { defineConfig, loadEnv, } from 'vite'
import { defineConfig, loadEnv } from 'vite'
import laravel from 'laravel-vite-plugin'
import { networkInterfaces } from 'os'

export default ({ mode }) => {
process.env = { ...process.env, ...loadEnv(mode, process.cwd()) }
process.env = { ...process.env, ...loadEnv(mode, process.cwd()) }

return defineConfig({
build: {
outDir: './public/build/',
},
server: {
host: Object.values(networkInterfaces()).flat().find(i => i.family === 'IPv4' && !i.internal).address,
port: process.env.VITE_PORT,
},
resolve: {
alias: {
'@': '/resources/js',
},
},
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.ts'],
refresh: true,
}),
],
})
return defineConfig({
build: {
outDir: './public/build/',
},
server: {
host: Object.values(networkInterfaces()).flat().find(i => i.family === 'IPv4' && !i.internal).address,
port: process.env.VITE_PORT,
},
resolve: {
alias: {
'@': '/resources/js',
},
},
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.ts'],
refresh: true,
}),
],
})
}

0 comments on commit 210b40c

Please sign in to comment.