From 3506863b30c9b1b09feb2727517567447c800154 Mon Sep 17 00:00:00 2001 From: Yuri Dimas Date: Fri, 7 Nov 2025 09:47:17 +0700 Subject: [PATCH] chore: add config launch & tailwind extensions --- Properties/launchSettings.json | 12 ++++++++++++ tailwind.extension.json | 26 ++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 Properties/launchSettings.json create mode 100644 tailwind.extension.json diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json new file mode 100644 index 0000000..02e72de --- /dev/null +++ b/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "BpsRwApp": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:51154;http://localhost:51155" + } + } +} \ No newline at end of file diff --git a/tailwind.extension.json b/tailwind.extension.json new file mode 100644 index 0000000..7357d7b --- /dev/null +++ b/tailwind.extension.json @@ -0,0 +1,26 @@ +{ + "$schema": "https://raw.githubusercontent.com/theron-wang/VS2022-Editor-Support-for-Tailwind-CSS/refs/heads/main/tailwind.extension.schema.json", + "BuildFiles": [ + { + "Input": "wwwroot\\css\\input.css", + "Output": "wwwroot\\css\\site.css", + "Behavior": "Default" + } + ], + "PackageConfigurationFile": null, + "CustomRegexes": { + "Razor": { + "Override": false, + "Values": [] + }, + "HTML": { + "Override": false, + "Values": [] + }, + "JavaScript": { + "Override": false, + "Values": [] + } + }, + "UseCli": true +} \ No newline at end of file