🆙 Make everyting more easy updateable and dusk also 🆙

This commit is contained in:
Remco
2026-01-20 21:09:57 +01:00
parent 63e23b1d1f
commit 9479f805d8
6 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -26,7 +26,7 @@
"postcss-import": "^16.1.1", "postcss-import": "^16.1.1",
"prettier": "^3.0.0", "prettier": "^3.0.0",
"sass-loader": "^16.0.6", "sass-loader": "^16.0.6",
"tailwindcss": "^3.1.6", "tailwindcss": "3.1.6",
"turbolinks": "^5.2.0", "turbolinks": "^5.2.0",
"vite": "^7.3.1" "vite": "^7.3.1"
}, },
+2 -2
View File
@@ -104,7 +104,7 @@
"src": "public/assets/images/profile/profile-bg.png" "src": "public/assets/images/profile/profile-bg.png"
}, },
"resources/css/global.scss": { "resources/css/global.scss": {
"file": "assets/global-rY0MSsNV.css", "file": "assets/global-drNaDtTd.css",
"src": "resources/css/global.scss", "src": "resources/css/global.scss",
"isEntry": true, "isEntry": true,
"name": "global", "name": "global",
@@ -122,7 +122,7 @@
] ]
}, },
"resources/themes/atom/css/app.scss": { "resources/themes/atom/css/app.scss": {
"file": "assets/app-ehGpKKYI.css", "file": "assets/app-B8TlgM6_.css",
"src": "resources/themes/atom/css/app.scss", "src": "resources/themes/atom/css/app.scss",
"isEntry": true, "isEntry": true,
"name": "app", "name": "app",
@@ -40,7 +40,7 @@ export default defineConfig({
postcssImport(), postcssImport(),
tailwindcssNesting(postcssNesting()), tailwindcssNesting(postcssNesting()),
tailwindcss({ tailwindcss({
config: path.resolve(__dirname, "tailwind.config.js"), config: path.resolve(__dirname, "tailwind.config.cjs"),
}), }),
autoprefixer(), autoprefixer(),
], ],
@@ -35,7 +35,7 @@ export default defineConfig({
postcss: { postcss: {
plugins: [ plugins: [
tailwindcss({ tailwindcss({
config: path.resolve(__dirname, "tailwind.config.js"), config: path.resolve(__dirname, "tailwind.config.cjs"),
}), }),
], ],
}, },