Skip to content

Commit

Permalink
feature: video imports
Browse files Browse the repository at this point in the history
  • Loading branch information
edgardz committed Sep 18, 2024
1 parent 6ef0a67 commit 74eb3ca
Show file tree
Hide file tree
Showing 5 changed files with 6,755 additions and 242 deletions.
12 changes: 12 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"yoavbls.pretty-ts-errors",
"stylelint.vscode-stylelint",
"mikestead.dotenv",
"syler.sass-indented",
"mrmlnc.vscode-scss",
"clinyong.vscode-css-modules"
]
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ This will fire up:

Want to dive deeper? Check out our docs:

- [Template Generator](./docs/template-generator.md)
- [File Structure And Organization](./docs/file-structure-and-organization.md)
- [Template Generator](./docs/template-generator.md)
- [Copy Management](./docs/copy-management.md)
- [Import Aliases](./docs/import-aliases.md)

Expand Down
3 changes: 2 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/** @type {import('next').NextConfig} */

const path = require('node:path')
const withVideos = require('next-videos')

const nextConfig = {
output: process.env.OUTPUT,
Expand All @@ -18,7 +19,7 @@ const nextConfig = {
}
}

const nextPlugins = []
const nextPlugins = [withVideos]

if (process.env.BUNDLE_ANALYZE === 'true') {
const withBundleAnalyzer = require('@next/bundle-analyzer')({ enabled: true })
Expand Down
Loading

0 comments on commit 74eb3ca

Please sign in to comment.