일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- AWS
- Git
- logstash
- 설정
- s3
- error
- Python
- sample
- Windows
- API
- MySQL
- JS
- unity
- Ai
- 영어
- MSSQL
- mariadb
- 구글
- docker
- JavaScript
- Linux
- nodejs
- elasticsearch
- 유니티
- Kibana
- ChatGPT
- build
- 엘라스틱서치
- ssh
- Today
- Total
목록SSR (3)
가끔 보자, 하늘.
(https://ongamedev.tistory.com/499- 코드에서 이어집니다.) npm i -D tailwindcss postcss autoprefixer npx tailwindcss init -p vi tailwind.config.js >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> (...) content: [ "./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}", ], (...) > import 'tailwindcss/tailwind.css'; import Link from 'next/link' export default () => ( NextJS Sample Login Home Admi..
(Hello Page 만들기-https://ongamedev.tistory.com/498- 코드에서 이어집니다.) mkdir components && cd "$_" vi header.js >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> import Link from 'next/link' const linkStyle={marginRight: 15} export default () => ( Home Admin ) > import Header from '/components/header' const layoutStyle = { margin: 10, padding: 10, border: '1px soild #DDD' } export default (props) => ( {p..
샘플 코드가 기나긴 설명보다 좋을 때가 있습니다. 잘 이해 안되는 건 댓글 혹은 해당 키워드를 구글링 해보시면 바로 확인할 수 있습니다. mkdir ssr && cd "$_" npm init -y npm install --save react react-dom next vi package.json >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> (...) "scripts": { "dev" : "next" . } (...) export default () => (Hello!)