π
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| JavaScript 1 hr 8 mins ββββββββββββββββββββ 87.0% | |
| CSS 4 mins ββββββββββββββββββββ 5.6% | |
| JSON 4 mins ββββββββββββββββββββ 5.3% | |
| Text 1 min ββββββββββββββββββββ 1.6% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <div class="w-full max-w-xs mx-auto text-gray-900"> | |
| <div class="space-y-1"> | |
| <label | |
| id="assigned-to-label" | |
| class="block text-sm font-medium leading-5 text-gray-700" | |
| >Assigned to</label> | |
| <div class="relative"> | |
| <span class="inline-block w-full rounded-md shadow-sm"> | |
| <button |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const path = require('path') | |
| const glob = require('glob') | |
| const ExtractTextPlugin = require('extract-text-webpack-plugin') | |
| const HtmlWebpackPlugin = require('html-webpack-plugin') | |
| const PurgecssPlugin = require('purgecss-webpack-plugin') | |
| const PATHS = { | |
| src: path.join(__dirname, 'src') | |
| } |