make sure ./assets/static exists:
for angular, its should be located in ./src/assets/static
| import sys | |
| class BinTree(): | |
| def __init__(self, value): | |
| self.__value = value | |
| self.__left = None | |
| self.__right = None | |
| def value(self): | |
| return self.__value |
| function readBody(req) { | |
| return new Promise((resolve, reject) => { | |
| let body = ""; | |
| req.on("data", (chunk) => { body += "" + chunk; }); | |
| req.on("end", () => { resolve(body); }); | |
| req.on("error", (err) => { reject(err); }); | |
| }); | |
| } |
| .git/ |
| func main() { | |
| r := chi.Router() | |
| r.Use(Basic()) | |
| r.Use(Static("/static", "server2/static")) | |
| http.ListenAndServe(":3000", r) | |
| } | |
| type Middleware func(next http.Handler) http.Handler | |
| func Basic() Middleware { |
| <label for="serial-no" class="flex"> | |
| <span>serial no</span> | |
| <div class="flex-1"><input id="serial-no" class="w-full h-full" placeholder="serial-no"></div> | |
| </label> |
| <div class="grid items-center justify-center"> | |
| <div>centered</div> | |
| </div> |
this should work for angular version 12 above
this template will automate the creation process of angular and tailwind as manually instructed here: https://tailwindcss.com/docs/guides/angular
| # fuck you starter pack ICANT ALERT | |
| npm create vite | |
| npm i | |
| npm install -D tailwindcss postcss autoprefixer | |
| npx tailwindcss init -p | |
| npm i jquery | |
| npm i --save-dev @types/jquery |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Document</title> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" |