I need to say something so here is a paragraph.
// let's see how pre formatted code turns out
const defaultTheme = require('tailwindcss/defaultTheme'); | |
module.exports = { | |
purge: [ | |
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php', | |
'./storage/framework/views/*.php', | |
'./resources/views/**/*.blade.php', | |
'./resources/js/**/*.vue', | |
], | |
[ | |
{ | |
"state":"Alaska", | |
"latitude":61.3850, | |
"longitude":-152.2683 | |
}, | |
{ | |
"state":"Alabama", | |
"latitude":32.7990, | |
"longitude":-86.8073 |
I need to say something so here is a paragraph.
// let's see how pre formatted code turns out
// react specific css modules | |
declare module '*.module.css' { | |
const content: Record<string, string>; | |
export default content; | |
} | |
// react specific for direct svg import | |
declare module '*.svg' { | |
import React = require('react'); | |
export const ReactComponent: React.FC<React.SVGProps<SVGSVGElement>>; |
Using Nuxt 3 RC 13 (latest as of Nov 9, 2022)
So far two major changes are the names of useBody changed to readBody and useCookies changed to parseCookies.
Still having issue with having to refresh page to get content to show or to get the correct tweetId from the url. Will update as soon as I figure it out.
I'll be documenting updated code changes here while going through the course. Once I finish the course I'll upload the complete project
<?php | |
namespace App\Console\Commands; | |
use Closure; | |
use Exception; | |
use Illuminate\Console\Command; | |
use Symfony\Component\Process\PhpExecutableFinder; | |
use Symfony\Component\Process\Process; |
``` | |
selector: | |
app: auth-mongo | |
type: ClusterIP | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
skaffold.dev/run-id: c6b4d167-f7f4-4be2-b880-d0dfe04b6a59 |
@echo off | |
:: Path to Sublime Text installation dir. | |
SET stPath=%~dp0sublime_text.exe | |
SET stPathOnly=%~dp0 | |
:: Key name for the registry entries. | |
SET UserEntry=Sublime Text | |
SET AdminEntry=Sublime Text As Admin | |
:: Context menu texts. | |
SET "UserMenuText=Open with Sublime(&-)" | |
SET "AdminMenuText=Open with Sublime As Admin(&+)" |
<?php | |
class DatabaseSeeder extends Seeder { | |
/** | |
* Tables to be truncated and seeded | |
* | |
* @var array $tables | |
*/ | |
private $tables = [ |
body { | |
font-family: Helvetica, arial, sans-serif; | |
font-size: 14px; | |
line-height: 1.6; | |
padding-top: 10px; | |
padding-bottom: 10px; | |
background-color: white; | |
padding: 30px; | |
color: #333; | |
} |