-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from ViniR07/develop
Add netflix-V2 project
- Loading branch information
Showing
39 changed files
with
2,408 additions
and
2,286 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
end_of_line = crlf | ||
charset = utf-8 | ||
trim_trailing_whitespace = false | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
end_of_line = crlf | ||
charset = utf-8 | ||
trim_trailing_whitespace = false | ||
insert_final_newline = false |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
node_modules | ||
.next | ||
node_modules | ||
.next | ||
/*.js |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es2021": true, | ||
"node": true, | ||
"jest": true | ||
}, | ||
"extends": [ | ||
"plugin:react/recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"standard", | ||
"prettier", | ||
"prettier/prettier" | ||
], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"jsx": true | ||
}, | ||
"ecmaVersion": "latest", | ||
"sourceType": "module" | ||
}, | ||
"plugins": [ | ||
"react", | ||
"@typescript-eslint", | ||
"prettier" | ||
], | ||
"rules": { | ||
"react/prop-types": "off" | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": ["*.tsx"], | ||
"rules": { | ||
"no-undef": "off" | ||
} | ||
} | ||
] | ||
} | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es2021": true, | ||
"node": true, | ||
"jest": true | ||
}, | ||
"extends": [ | ||
"plugin:react/recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"standard", | ||
"prettier", | ||
"prettier/prettier" | ||
], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"jsx": true | ||
}, | ||
"ecmaVersion": "latest", | ||
"sourceType": "module" | ||
}, | ||
"plugins": [ | ||
"react", | ||
"@typescript-eslint", | ||
"prettier" | ||
], | ||
"rules": { | ||
"react/prop-types": "off" | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": ["*.tsx"], | ||
"rules": { | ||
"no-undef": "off" | ||
} | ||
} | ||
] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/// <reference types="next" /> | ||
/// <reference types="next/image-types/global" /> | ||
|
||
// NOTE: This file should not be edited | ||
// see https://nextjs.org/docs/basic-features/typescript for more information. | ||
/// <reference types="next" /> | ||
/// <reference types="next/image-types/global" /> | ||
|
||
// NOTE: This file should not be edited | ||
// see https://nextjs.org/docs/basic-features/typescript for more information. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,58 @@ | ||
/** @type {import('next').NextConfig} */ | ||
|
||
const nextConfig = { | ||
reactStrictMode: true, | ||
compiler: { | ||
styledComponents: true, | ||
}, | ||
}; | ||
|
||
module.exports = nextConfig; | ||
|
||
const withImages = require('next-images'); | ||
module.exports = withImages({ | ||
esModule: true, | ||
}); | ||
|
||
// next-react-svg | ||
// const withReactSvg = require('next-react-svg') | ||
// const path = require('path') | ||
|
||
// module.exports = withReactSvg({ | ||
// include: path.resolve(__dirname, 'src/assets/svg'), | ||
// webpack(config, options) { | ||
// return config | ||
// } | ||
// }) | ||
|
||
/* Use somente se for usar babel.config.js */ | ||
// webpack: (config, options) => { | ||
// const nextBabelLoader = findNextBabelLoader(config); | ||
// // Set Babel root to workspace root, so config | ||
// // applies to workspace modules. | ||
// nextBabelLoader.options.root = resolve('..'); | ||
// // But use the local config | ||
// nextBabelLoader.options.configFile = resolve('.babelrc'); | ||
// return config; | ||
// } | ||
|
||
// function findNextBabelLoader(config) { | ||
// for (const rule of config.module.rules) { | ||
// // server | ||
// if ( | ||
// rule.use && | ||
// rule.use.loader === 'next-babel-loader' | ||
// ) { | ||
// return rule.use; | ||
// } | ||
// // client | ||
// else if ( | ||
// rule.use && | ||
// Array.isArray(rule.use) && | ||
// rule.use[1].loader === 'next-babel-loader' | ||
// ) { | ||
// return rule.use[1]; | ||
// } | ||
// } | ||
// throw new Error('`next-babel-loader` not found'); | ||
// } | ||
/** @type {import('next').NextConfig} */ | ||
|
||
const nextConfig = { | ||
reactStrictMode: true, | ||
compiler: { | ||
styledComponents: true, | ||
}, | ||
}; | ||
|
||
module.exports = nextConfig; | ||
|
||
const withImages = require('next-images'); | ||
module.exports = withImages({ | ||
esModule: true, | ||
}); | ||
|
||
// next-react-svg | ||
// const withReactSvg = require('next-react-svg') | ||
// const path = require('path') | ||
|
||
// module.exports = withReactSvg({ | ||
// include: path.resolve(__dirname, 'src/assets/svg'), | ||
// webpack(config, options) { | ||
// return config | ||
// } | ||
// }) | ||
|
||
/* Use somente se for usar babel.config.js */ | ||
// webpack: (config, options) => { | ||
// const nextBabelLoader = findNextBabelLoader(config); | ||
// // Set Babel root to workspace root, so config | ||
// // applies to workspace modules. | ||
// nextBabelLoader.options.root = resolve('..'); | ||
// // But use the local config | ||
// nextBabelLoader.options.configFile = resolve('.babelrc'); | ||
// return config; | ||
// } | ||
|
||
// function findNextBabelLoader(config) { | ||
// for (const rule of config.module.rules) { | ||
// // server | ||
// if ( | ||
// rule.use && | ||
// rule.use.loader === 'next-babel-loader' | ||
// ) { | ||
// return rule.use; | ||
// } | ||
// // client | ||
// else if ( | ||
// rule.use && | ||
// Array.isArray(rule.use) && | ||
// rule.use[1].loader === 'next-babel-loader' | ||
// ) { | ||
// return rule.use[1]; | ||
// } | ||
// } | ||
// throw new Error('`next-babel-loader` not found'); | ||
// } |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
module.exports = { | ||
semi: true, | ||
singleQuote: true, | ||
arrowParens: 'avoid', | ||
endOfLine: 'auto', | ||
tabWidth: 4 | ||
module.exports = { | ||
semi: true, | ||
singleQuote: true, | ||
arrowParens: 'avoid', | ||
endOfLine: 'auto', | ||
tabWidth: 4 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[ZoneTransfer] | ||
ZoneId=3 | ||
HostUrl=https://user-images.githubusercontent.com/92659173/156057029-d245b3ab-c249-4610-99b8-21f91757c0fc.png |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[ZoneTransfer] | ||
ZoneId=3 | ||
ReferrerUrl=https://online-video-cutter.com/ | ||
HostUrl=https://s41.123apps.com/vcutter/d/s40rg85ovjO_mp4_mySEOQaA.mp4 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[ZoneTransfer] | ||
ZoneId=3 | ||
ReferrerUrl=https://online-video-cutter.com/ | ||
HostUrl=https://s23.123apps.com/vcutter/d/s18yiJBv2df_mkv_nlM7c2fB.mp4 |
Oops, something went wrong.
a646090
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
vinport – ./
vinport.vercel.app
vinport-vinir07.vercel.app
vinport-git-main-vinir07.vercel.app