Skip to content

Commit e87b9e2

Browse files
committed
refactor : 폴더 구조 -> oz 제거
1 parent 5cb0489 commit e87b9e2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+4470
-2
lines changed
File renamed without changes.

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
oz/.gitignore
2-
.DS_Store
1+
node_modules

.next/build-manifest.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"polyfillFiles": [
3+
"static/chunks/polyfills.js"
4+
],
5+
"devFiles": [
6+
"static/chunks/react-refresh.js"
7+
],
8+
"ampDevFiles": [],
9+
"lowPriorityFiles": [
10+
"static/development/_buildManifest.js",
11+
"static/development/_ssgManifest.js"
12+
],
13+
"rootMainFiles": [],
14+
"pages": {
15+
"/": [
16+
"static/chunks/webpack.js",
17+
"static/chunks/main.js",
18+
"static/chunks/pages/index.js"
19+
],
20+
"/_app": [
21+
"static/chunks/webpack.js",
22+
"static/chunks/main.js",
23+
"static/chunks/pages/_app.js"
24+
],
25+
"/_error": [
26+
"static/chunks/webpack.js",
27+
"static/chunks/main.js",
28+
"static/chunks/pages/_error.js"
29+
]
30+
},
31+
"ampFirstPages": []
32+
}
8.31 MB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1.69 MB
Binary file not shown.
Binary file not shown.
Binary file not shown.

.next/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"type": "commonjs"}

.next/react-loadable-manifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

.next/server/middleware-build-manifest.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.next/server/middleware-manifest.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"sortedMiddleware": [],
3+
"middleware": {},
4+
"functions": {},
5+
"version": 2
6+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
self.__REACT_LOADABLE_MANIFEST="{}"

.next/server/next-font-manifest.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.next/server/next-font-manifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"pages":{"/":["static/media/2aaf0723e720e8b9-s.p.woff2"]},"app":{},"appUsingSizeAdjust":false,"pagesUsingSizeAdjust":true}

.next/server/pages-manifest.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"/_app": "pages/_app.js",
3+
"/_error": "pages/_error.js",
4+
"/_document": "pages/_document.js",
5+
"/": "pages/index.js"
6+
}

.next/server/pages/_app.js

Lines changed: 254 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.next/server/pages/_document.js

Lines changed: 254 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.next/server/pages/_error.js

Lines changed: 353 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.next/server/pages/index.js

Lines changed: 493 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.next/server/webpack-runtime.js

Lines changed: 168 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,168 @@
1+
/*
2+
* ATTENTION: An "eval-source-map" devtool has been used.
3+
* This devtool is neither made for production nor for readable output files.
4+
* It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools.
5+
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
6+
* or disable the default devtool with "devtool: false".
7+
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
8+
*/
9+
/******/ (() => { // webpackBootstrap
10+
/******/ "use strict";
11+
/******/ var __webpack_modules__ = ({});
12+
/************************************************************************/
13+
/******/ // The module cache
14+
/******/ var __webpack_module_cache__ = {};
15+
/******/
16+
/******/ // The require function
17+
/******/ function __webpack_require__(moduleId) {
18+
/******/ // Check if module is in cache
19+
/******/ var cachedModule = __webpack_module_cache__[moduleId];
20+
/******/ if (cachedModule !== undefined) {
21+
/******/ return cachedModule.exports;
22+
/******/ }
23+
/******/ // Create a new module (and put it into the cache)
24+
/******/ var module = __webpack_module_cache__[moduleId] = {
25+
/******/ // no module.id needed
26+
/******/ // no module.loaded needed
27+
/******/ exports: {}
28+
/******/ };
29+
/******/
30+
/******/ // Execute the module function
31+
/******/ var threw = true;
32+
/******/ try {
33+
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
34+
/******/ threw = false;
35+
/******/ } finally {
36+
/******/ if(threw) delete __webpack_module_cache__[moduleId];
37+
/******/ }
38+
/******/
39+
/******/ // Return the exports of the module
40+
/******/ return module.exports;
41+
/******/ }
42+
/******/
43+
/******/ // expose the modules object (__webpack_modules__)
44+
/******/ __webpack_require__.m = __webpack_modules__;
45+
/******/
46+
/************************************************************************/
47+
/******/ /* webpack/runtime/compat get default export */
48+
/******/ (() => {
49+
/******/ // getDefaultExport function for compatibility with non-harmony modules
50+
/******/ __webpack_require__.n = (module) => {
51+
/******/ var getter = module && module.__esModule ?
52+
/******/ () => (module['default']) :
53+
/******/ () => (module);
54+
/******/ __webpack_require__.d(getter, { a: getter });
55+
/******/ return getter;
56+
/******/ };
57+
/******/ })();
58+
/******/
59+
/******/ /* webpack/runtime/define property getters */
60+
/******/ (() => {
61+
/******/ // define getter functions for harmony exports
62+
/******/ __webpack_require__.d = (exports, definition) => {
63+
/******/ for(var key in definition) {
64+
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
65+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
66+
/******/ }
67+
/******/ }
68+
/******/ };
69+
/******/ })();
70+
/******/
71+
/******/ /* webpack/runtime/ensure chunk */
72+
/******/ (() => {
73+
/******/ __webpack_require__.f = {};
74+
/******/ // This file contains only the entry chunk.
75+
/******/ // The chunk loading function for additional chunks
76+
/******/ __webpack_require__.e = (chunkId) => {
77+
/******/ return Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {
78+
/******/ __webpack_require__.f[key](chunkId, promises);
79+
/******/ return promises;
80+
/******/ }, []));
81+
/******/ };
82+
/******/ })();
83+
/******/
84+
/******/ /* webpack/runtime/get javascript chunk filename */
85+
/******/ (() => {
86+
/******/ // This function allow to reference async chunks and sibling chunks for the entrypoint
87+
/******/ __webpack_require__.u = (chunkId) => {
88+
/******/ // return url for filenames based on template
89+
/******/ return undefined;
90+
/******/ };
91+
/******/ })();
92+
/******/
93+
/******/ /* webpack/runtime/hasOwnProperty shorthand */
94+
/******/ (() => {
95+
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
96+
/******/ })();
97+
/******/
98+
/******/ /* webpack/runtime/make namespace object */
99+
/******/ (() => {
100+
/******/ // define __esModule on exports
101+
/******/ __webpack_require__.r = (exports) => {
102+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
103+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
104+
/******/ }
105+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
106+
/******/ };
107+
/******/ })();
108+
/******/
109+
/******/ /* webpack/runtime/startup entrypoint */
110+
/******/ (() => {
111+
/******/ __webpack_require__.X = (result, chunkIds, fn) => {
112+
/******/ // arguments: chunkIds, moduleId are deprecated
113+
/******/ var moduleId = chunkIds;
114+
/******/ if(!fn) chunkIds = result, fn = () => (__webpack_require__(__webpack_require__.s = moduleId));
115+
/******/ chunkIds.map(__webpack_require__.e, __webpack_require__)
116+
/******/ var r = fn();
117+
/******/ return r === undefined ? result : r;
118+
/******/ }
119+
/******/ })();
120+
/******/
121+
/******/ /* webpack/runtime/require chunk loading */
122+
/******/ (() => {
123+
/******/ // no baseURI
124+
/******/
125+
/******/ // object to store loaded chunks
126+
/******/ // "1" means "loaded", otherwise not loaded yet
127+
/******/ var installedChunks = {
128+
/******/ "webpack-runtime": 1
129+
/******/ };
130+
/******/
131+
/******/ // no on chunks loaded
132+
/******/
133+
/******/ var installChunk = (chunk) => {
134+
/******/ var moreModules = chunk.modules, chunkIds = chunk.ids, runtime = chunk.runtime;
135+
/******/ for(var moduleId in moreModules) {
136+
/******/ if(__webpack_require__.o(moreModules, moduleId)) {
137+
/******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
138+
/******/ }
139+
/******/ }
140+
/******/ if(runtime) runtime(__webpack_require__);
141+
/******/ for(var i = 0; i < chunkIds.length; i++)
142+
/******/ installedChunks[chunkIds[i]] = 1;
143+
/******/
144+
/******/ };
145+
/******/
146+
/******/ // require() chunk loading for javascript
147+
/******/ __webpack_require__.f.require = (chunkId, promises) => {
148+
/******/ // "1" is the signal for "already loaded"
149+
/******/ if(!installedChunks[chunkId]) {
150+
/******/ if("webpack-runtime" != chunkId) {
151+
/******/ installChunk(require("./" + __webpack_require__.u(chunkId)));
152+
/******/ } else installedChunks[chunkId] = 1;
153+
/******/ }
154+
/******/ };
155+
/******/
156+
/******/ module.exports = __webpack_require__;
157+
/******/ __webpack_require__.C = installChunk;
158+
/******/
159+
/******/ // no HMR
160+
/******/
161+
/******/ // no HMR manifest
162+
/******/ })();
163+
/******/
164+
/************************************************************************/
165+
/******/
166+
/******/
167+
/******/ })()
168+
;

.next/static/chunks/main.js

Lines changed: 1142 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.next/static/chunks/pages/_app.js

Lines changed: 104 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.next/static/chunks/pages/_error.js

Lines changed: 28 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.next/static/chunks/pages/index.js

Lines changed: 226 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.next/static/chunks/polyfills.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.next/static/chunks/react-refresh.js

Lines changed: 62 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)