From 9479f805d8b526456df8733efcd7f99f94c5b9ca Mon Sep 17 00:00:00 2001 From: Remco Date: Tue, 20 Jan 2026 21:09:57 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=86=99=20Make=20everyting=20more=20easy?= =?UTF-8?q?=20updateable=20and=20dusk=20also=20=F0=9F=86=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Updated_Cms/package.json | 2 +- Updated_Cms/public/build/manifest.json | 4 ++-- .../themes/atom/{tailwind.config.js => tailwind.config.cjs} | 0 Updated_Cms/resources/themes/atom/vite.config.js | 2 +- .../themes/dusk/{tailwind.config.js => tailwind.config.cjs} | 0 Updated_Cms/resources/themes/dusk/vite.config.js | 2 +- 6 files changed, 5 insertions(+), 5 deletions(-) rename Updated_Cms/resources/themes/atom/{tailwind.config.js => tailwind.config.cjs} (100%) rename Updated_Cms/resources/themes/dusk/{tailwind.config.js => tailwind.config.cjs} (100%) diff --git a/Updated_Cms/package.json b/Updated_Cms/package.json index 76f7c9b628..7c85dbeaba 100644 --- a/Updated_Cms/package.json +++ b/Updated_Cms/package.json @@ -26,7 +26,7 @@ "postcss-import": "^16.1.1", "prettier": "^3.0.0", "sass-loader": "^16.0.6", - "tailwindcss": "^3.1.6", + "tailwindcss": "3.1.6", "turbolinks": "^5.2.0", "vite": "^7.3.1" }, diff --git a/Updated_Cms/public/build/manifest.json b/Updated_Cms/public/build/manifest.json index 3341e73054..76d1088837 100644 --- a/Updated_Cms/public/build/manifest.json +++ b/Updated_Cms/public/build/manifest.json @@ -104,7 +104,7 @@ "src": "public/assets/images/profile/profile-bg.png" }, "resources/css/global.scss": { - "file": "assets/global-rY0MSsNV.css", + "file": "assets/global-drNaDtTd.css", "src": "resources/css/global.scss", "isEntry": true, "name": "global", @@ -122,7 +122,7 @@ ] }, "resources/themes/atom/css/app.scss": { - "file": "assets/app-ehGpKKYI.css", + "file": "assets/app-B8TlgM6_.css", "src": "resources/themes/atom/css/app.scss", "isEntry": true, "name": "app", diff --git a/Updated_Cms/resources/themes/atom/tailwind.config.js b/Updated_Cms/resources/themes/atom/tailwind.config.cjs similarity index 100% rename from Updated_Cms/resources/themes/atom/tailwind.config.js rename to Updated_Cms/resources/themes/atom/tailwind.config.cjs diff --git a/Updated_Cms/resources/themes/atom/vite.config.js b/Updated_Cms/resources/themes/atom/vite.config.js index c9ccc01f36..31dbcd1959 100644 --- a/Updated_Cms/resources/themes/atom/vite.config.js +++ b/Updated_Cms/resources/themes/atom/vite.config.js @@ -40,7 +40,7 @@ export default defineConfig({ postcssImport(), tailwindcssNesting(postcssNesting()), tailwindcss({ - config: path.resolve(__dirname, "tailwind.config.js"), + config: path.resolve(__dirname, "tailwind.config.cjs"), }), autoprefixer(), ], diff --git a/Updated_Cms/resources/themes/dusk/tailwind.config.js b/Updated_Cms/resources/themes/dusk/tailwind.config.cjs similarity index 100% rename from Updated_Cms/resources/themes/dusk/tailwind.config.js rename to Updated_Cms/resources/themes/dusk/tailwind.config.cjs diff --git a/Updated_Cms/resources/themes/dusk/vite.config.js b/Updated_Cms/resources/themes/dusk/vite.config.js index b517907aa6..49058cc09c 100644 --- a/Updated_Cms/resources/themes/dusk/vite.config.js +++ b/Updated_Cms/resources/themes/dusk/vite.config.js @@ -35,7 +35,7 @@ export default defineConfig({ postcss: { plugins: [ tailwindcss({ - config: path.resolve(__dirname, "tailwind.config.js"), + config: path.resolve(__dirname, "tailwind.config.cjs"), }), ], },